docs: Move the GProxy SECTION

Move it to the struct docs.

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

Helps: #3037
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

View File

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

View File

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