Method
GioResolverlookup_service_async
since: 2.22
Declaration [src]
void
g_resolver_lookup_service_async (
  GResolver* resolver,
  const gchar* service,
  const gchar* protocol,
  const gchar* domain,
  GCancellable* cancellable,
  GAsyncReadyCallback callback,
  gpointer user_data
)
Description [src]
Begins asynchronously performing a DNS SRV lookup for the given
service and protocol in the given domain, and eventually calls
callback, which must call g_resolver_lookup_service_finish() to
get the final result. See g_resolver_lookup_service() for more details.
Available since: 2.22
This method completes asynchronously. Use g_resolver_lookup_service_finish() inside the GAsyncReadyCallback to obtain the result of the operation.
Parameters
- service
- 
            Type: const gchar*The service type to look up (eg, “ldap”). The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. 
- protocol
- 
            Type: const gchar*The networking protocol to use for service(eg, “tcp”).The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. 
- domain
- 
            Type: const gchar*The DNS domain to look up the service in. The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. 
- cancellable
- 
            Type: GCancellableA GCancellable, orNULL.The argument can be NULL.The data is owned by the caller of the method. 
- callback
- 
            Type: GAsyncReadyCallbackCallback to call after resolution completes. The argument can be NULL.
- user_data
- 
            Type: gpointerData for callback.The argument can be NULL.The data is owned by the caller of the method.