19ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk/**
29ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * Copyright (c) 2013, The Android Open Source Project
39ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk *
49ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * Licensed under the Apache License, Version 2.0 (the "License");
59ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * you may not use this file except in compliance with the License.
69ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * You may obtain a copy of the License at
79ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk *
89ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk *     http://www.apache.org/licenses/LICENSE-2.0
99ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk *
109ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * Unless required by applicable law or agreed to in writing, software
119ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * distributed under the License is distributed on an "AS IS" BASIS,
129ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
139ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * See the License for the specific language governing permissions and
149ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk * limitations under the License.
159ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk */
169ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monkpackage com.android.net;
179ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk
189ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk/** @hide */
199ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monkinterface IProxyService
209ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk{
219ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk    String resolvePacFile(String host, String url);
229ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk
239ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk    oneway void setPacFile(String scriptContents);
249ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk
259ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk    oneway void startPacSystem();
269ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk    oneway void stopPacSystem();
279ced3cd9d6ea414523051ec872fffc68f5fdbf08Jason Monk}
28