NetworkAddress
Object Hierarchy:
Description:
[ CCode ( type_id = "g_network_address_get_type ()" ) ]
public class NetworkAddress : Object, SocketConnectable
public class NetworkAddress : Object, SocketConnectable
`GNetworkAddress` provides an easy way to resolve a hostname and then attempt to connect to that host, handling the possibility of multiple IP addresses and multiple address families.
The enumeration results of resolved addresses *may* be cached as long as this object is kept alive which may have unexpected results if alive for too long.
See [iface@Gio.SocketConnectable] for an example of using the connectable interface.
Example: Network addresses:
public static int main (string[] args) {
//
// Determine whether valadoc.org can be reached: (sync):
//
NetworkMonitor monitor = NetworkMonitor.get_default ();
NetworkAddress address = new NetworkAddress ("www.valadoc.org", 80);
try {
bool can_reach = monitor.can_reach (address);
print ("can-reach: %s\n", can_reach.to_string ());
} catch (Error e) {
print ("Error: %s\n", e.message);
}
return 0;
}
valac --pkg gio-2.0 GLib.NetworkAddress.vala
Namespace: GLib
Package: gio-2.0
Content:
Properties:
Static methods:
Creation methods:
Methods:
Inherited Members:
All known members inherited from class GLib.Object
All known members inherited from interface GLib.SocketConnectable