1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-04-01 13:23:07 +02:00

docs: Move the GProxy SECTION

Move it to the struct docs.

Signed-off-by: Philip Withnall <philip@tecnocode.co.uk>

Helps: 
This commit is contained in:
Philip Withnall 2023-10-25 15:04:21 +01:00
parent 06c2e33707
commit 34fc02d5ac
2 changed files with 5 additions and 14 deletions

@ -29,16 +29,14 @@
#include "glibintl.h" #include "glibintl.h"
/** /**
* SECTION:gproxy * GProxy:
* @short_description: Interface for proxy handling
* @include: gio/gio.h
* *
* A #GProxy handles connecting to a remote host via a given type of * A `GProxy` handles connecting to a remote host via a given type of
* proxy server. It is implemented by the 'gio-proxy' extension point. * proxy server. It is implemented by the `gio-proxy` extension point.
* The extensions are named after their proxy protocol name. As an * The extensions are named after their proxy protocol name. As an
* example, a SOCKS5 proxy implementation can be retrieved with the * example, a SOCKS5 proxy implementation can be retrieved with the
* name 'socks5' using the function * name `socks5` using the function
* g_io_extension_point_get_extension_by_name(). * [method@Gio.IOExtensionPoint.get_extension_by_name].
* *
* Since: 2.26 * Since: 2.26
**/ **/

@ -48,13 +48,6 @@ G_BEGIN_DECLS
*/ */
#define G_PROXY_EXTENSION_POINT_NAME "gio-proxy" #define G_PROXY_EXTENSION_POINT_NAME "gio-proxy"
/**
* GProxy:
*
* Interface that handles proxy connection and payload.
*
* Since: 2.26
*/
typedef struct _GProxyInterface GProxyInterface; typedef struct _GProxyInterface GProxyInterface;
/** /**