SocketListener.addInetPort
bool addInetPort(ushort port, gobject.object.ObjectWrap sourceObject = null)Helper function for [gio.socket_listener.SocketListener.addAddress] that creates a TCP/IP socket listening on IPv4 and IPv6 (if supported) on the specified port on all interfaces.
source_object will be passed out in the various calls to accept to identify this particular source, which is useful if you're listening on multiple addresses and do different things depending on what address is connected to.
Call [gio.socket_listener.SocketListener.close] to stop listening on port; this will not be done automatically when you drop your final reference to listener, as references may be held internally.
Parameters
port | an IP port number (non-zero) |
sourceObject | Optional #GObject identifying this source |
Returns
true on success, false on error.
Throws
[ErrorWrap]