Gio.SocketListener.prototype.add_inet_port
function add_inet_port(port: Number(guint16), source_object: GObject.Object): Boolean {
// Gjs wrapper for g_socket_listener_add_inet_port()
}
Helper function for Gio.SocketListener.prototype.add_address 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.
Since 2.22
- port
an IP port number (non-zero)
- source_object
Optional GObject.Object identifying this source
- Returns
true on success, false on error.