Function listenTCP
Starts listening on the specified port
.
'connection_callback
' will be called for each client that connects to the
server socket. Each new connection gets its own fiber. The stream parameter
then allows to perform blocking I/O on the client socket.
The address
parameter can be used to specify the network
interface on which the server socket is supposed to listen for connections.
By default, all IPv4 and IPv6 interfaces will be used.
Prototypes
TCPListener[] listenTCP( ushort port, void delegate(TCPConnection) connection_callback, TCPListenOptions options ); TCPListener listenTCP( ushort port, void delegate(TCPConnection) connection_callback, string address, TCPListenOptions options );
Authors
Sönke Ludwig
Copyright
© 2012-2014 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.