diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-11-06 22:35:14 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-11-06 22:35:14 +0100 |
commit | 878230b88c24c5f22f1f1fa83f48db98723ff859 (patch) | |
tree | 173a06ea13ba4d4c5b35aa5d0858e7e874bb3ece /include | |
parent | 7739bbaee2eb71ccd7ff4a4799a18dc130069eaf (diff) | |
download | connman-878230b88c24c5f22f1f1fa83f48db98723ff859.tar.gz connman-878230b88c24c5f22f1f1fa83f48db98723ff859.tar.bz2 connman-878230b88c24c5f22f1f1fa83f48db98723ff859.zip |
Add basic implementation for internal proxy framework
Diffstat (limited to 'include')
-rw-r--r-- | include/proxy.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/include/proxy.h b/include/proxy.h new file mode 100644 index 00000000..61117a00 --- /dev/null +++ b/include/proxy.h @@ -0,0 +1,62 @@ +/* + * + * Connection Manager + * + * Copyright (C) 2007-2010 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef __CONNMAN_PROXY_H +#define __CONNMAN_PROXY_H + +#include <connman/service.h> + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SECTION:proxy + * @title: Proxy premitives + * @short_description: Functions for handling proxy configuration + */ + +typedef void (*connman_proxy_lookup_cb) (const char *proxy, void *user_data); + +unsigned int connman_proxy_lookup(const char *interface, const char *url, + connman_proxy_lookup_cb cb, void *user_data); +void connman_proxy_lookup_cancel(unsigned int token); + +void connman_proxy_driver_lookup_notify(struct connman_service *service, + const char *url, const char *result); + +struct connman_proxy_driver { + const char *name; + int priority; + int (*request_lookup) (struct connman_service *service, + const char *url); + void (*cancel_lookup) (struct connman_service *service, + const char *url); +}; + +int connman_proxy_driver_register(struct connman_proxy_driver *driver); +void connman_proxy_driver_unregister(struct connman_proxy_driver *driver); + +#ifdef __cplusplus +} +#endif + +#endif /* __CONNMAN_PROXY_H */ |