ServerBase.host

Binds the server to the given address.

  1. void host(string ip, ushort port)
    class ServerBase
    void
    host
    (
    string ip
    ,
    ushort port
    )
  2. void host(string ip)

Examples

server.host("0.0.0.0");
server.host("::1", 8080);

Meta