Interface UDPConnection
Represents a bound and possibly 'connected' UDP socket.
interface UDPConnection
;
Properties
Name | Type | Description |
bindAddress [get]
|
string | Returns the address to which the UDP socket is bound.
|
canBroadcast [get, set]
|
bool | Determines if the socket is allowed to send to broadcast addresses.
|
localAddress [get]
|
NetworkAddress | The local/bind address of the underlying socket.
|
Methods
Name | Description |
close
()
|
Stops listening for datagrams and frees all resources.
|
connect
(host, port)
|
Locks the UDP connection to a certain peer.
|
recv
(buf, peer_address)
|
Receives a single packet.
|
send
(data, peer_address)
|
Sends a single packet.
|