mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Document g_simple_proxy_resolver_set_ignore_hosts
This commit is contained in:
parent
1c1255772b
commit
e38ee2f468
@ -550,9 +550,22 @@ g_simple_proxy_resolver_set_default_proxy (GSimpleProxyResolver *resolver,
|
||||
g_object_notify (G_OBJECT (resolver), "default-proxy");
|
||||
}
|
||||
|
||||
/**
|
||||
* g_simple_proxy_resolver_set_ignore_hosts:
|
||||
* @resolver: a #GSimpleProxyResolver
|
||||
* @ignore_hosts: %NULL-terminated list of hosts/IP addresses
|
||||
* to not use a proxy for
|
||||
*
|
||||
* Sets the list of ignored hosts.
|
||||
*
|
||||
* See #GSimpleProxyResolver:ignore-hosts for more details on how the
|
||||
* @ignore_hosts argument is interpreted.
|
||||
*
|
||||
* Since: 2.36
|
||||
*/
|
||||
void
|
||||
g_simple_proxy_resolver_set_ignore_hosts (GSimpleProxyResolver *resolver,
|
||||
gchar **ignore_hosts)
|
||||
g_simple_proxy_resolver_set_ignore_hosts (GSimpleProxyResolver *resolver,
|
||||
gchar **ignore_hosts)
|
||||
{
|
||||
g_return_if_fail (G_IS_SIMPLE_PROXY_RESOLVER (resolver));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user