summaryrefslogtreecommitdiff
path: root/libproxy/proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'libproxy/proxy.h')
-rw-r--r--libproxy/proxy.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/libproxy/proxy.h b/libproxy/proxy.h
index 9da81fa..fb8275b 100644
--- a/libproxy/proxy.h
+++ b/libproxy/proxy.h
@@ -28,20 +28,16 @@ extern "C"
typedef struct pxProxyFactory_ pxProxyFactory;
/**
- * px_proxy_factory_new:
- *
* Creates a new pxProxyFactory instance. This instance should be kept
* around as long as possible as it contains cached data to increase
* performance. Memory usage should be minimal (cache is small) and the
* cache lifespan is handled automatically.
*
- * @returns: (transfer none): A new pxProxyFactory instance or NULL on error
+ * @return A new pxProxyFactory instance or NULL on error
*/
pxProxyFactory *px_proxy_factory_new(void);
/**
- * px_proxy_factory_get_proxies:
- *
* Get which proxies to use for the specified URL.
*
* A NULL-terminated array of proxy strings is returned.
@@ -89,9 +85,8 @@ pxProxyFactory *px_proxy_factory_new(void);
* RTSP streaming proxy. The expected returned configuration would be:
* - rtsp://[username:password@]proxy:port
*
- * @self: a Pointed to the ProxyFactory structure
- * @url: The URL we are trying to reach
- * Returns: (transfer full): A NULL-terminated array of proxy strings to use
+ * @url The URL we are trying to reach
+ * @return A NULL-terminated array of proxy strings to use
*/
char **px_proxy_factory_get_proxies(pxProxyFactory *self, const char *url);