Basics
Guides
API Reference
Basics
Guides
API Reference
[24:7] extends: object
A single target host/port that a network service is running on. SRV (service)
records are used by some network protocols to provide service-specific
aliasing and load-balancing. For example, XMPP (Jabber) uses SRV records to
locate the XMPP server for a domain; rather than connecting directly to
‘example.com’ or assuming a specific server hostname like ‘xmpp.example.com’,
an XMPP client would look up the xmpp-client SRV record for ‘example.com’,
and then connect to whatever host was pointed to by that record. You can use
[method@Gio.Resolver.lookup_service] or
[method@Gio.Resolver.lookup_service_async] to find the GSrvTargets for a
given service. However, if you are simply planning to connect to the remote
service, you can use [class@Gio.NetworkService]’s
[iface@Gio.SocketConnectable] interface and not need to worry about
GSrvTarget at all.
GSrvTarget (hostname = null, port = null, priority = null, weight = null)
Creates a new #GSrvTarget with the given parameters. You should not need to use this; normally #GSrvTargets are created by #GResolver.
hostname is the host that the service is running on.port is the port that the service is running on.priority is the target's priority.weight is the target's weight.toNativeHandle (Source)
Normalizes a constructor argument into a raw pointer carrier. Accepts a raw NativeHandle, a raw NativeBuffer returned from
fn.call(...), another generated wrapper exposinghandle(), or null. Returns null when the argument carries no pointer.
Source is the raw handle, raw buffer, wrapper, or null.A raw pointer carrier or null when no pointer is present.getLib ()
Returns the opened native library for this generated wrapper.
The opened native library.handle ()
Returns the wrapped NativeHandle.
The wrapped NativeHandle.isNull ()
Returns true when the wrapped handle is null.
A bool.describe ()
Returns a small string for debugging generated wrappers.
A string.copy ()
Copies @target
a copy of @target.free ()
Frees @target
None.get_hostname ()
Gets @target's hostname (in ASCII form; if you are going to present this to the user, you should use g_hostname_is_ascii_encoded() to check if it contains encoded Unicode segments, and use g_hostname_to_unicode() to convert it if it does.)
@target's hostname.get_port ()
Gets @target's port
@target's port.get_priority ()
Gets @target's priority. You should not need to look at this; #GResolver already sorts the targets according to the algorithm in RFC 2782.
@target's priority.get_weight ()
Gets @target's weight. You should not need to look at this; #GResolver already sorts the targets according to the algorithm in RFC 2782.
@target's weight.
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.