socket.bind([port][, address][, callback])
port <Number> - Integer, Optional
address <String>, Optional
callback <Function> with no parameters, Optional. Called when binding is complete.
For UDP sockets, causes the dgram.Socket to listen for datagram messages on a named port and optional address. If port is not specified, the operating system will attempt to bind to a random port. If address is not specified, the operating system will attempt to listen on all addresses. O