OSCServer

A server receiving OSC packets.

Constructors

this
this(Socket sock)

Constructs a new server using an already created socket.

this
this()

Constructs a new server using an UDP socket for IPv4 addresses.

Members

Functions

bind
void bind(Address addr)

Binds the server to the given address.

bind
void bind(string ip, ushort port)

Binds the server to the given IPv4 IP and port.

bind
void bind(ushort port)

Binds the server to the "localhost" IP using the given local port.

close
void close()

Closes the server.

empty
bool empty()

Checks if some messages are in the server buffer.

pop
OSCMessage pop()

Gets the next message received.

Meta