ServerDatagramSocket
Object Hierarchy:
Description:
public class ServerDatagramSocket : Object
Use this class to implement a UDP datagram oriented service. The call to recvfrom blocks only the current tasklet, not the whole
application. You can use this same object to send a response to the caller. Or else handle the request on another tasklet and, when
necessary, use an BroadcastClientDatagramSocket to send a reply.
Namespace: Ntk.Lib.TaskletUtils
Package: Netsukuku - vala port
Content:
Creation methods:
Methods:
- public
uchar
[] recvfrom (int
maxsize, out string
rmt_ip, out uint16
rmt_port) throws Error
- public void sendto (
uchar
[] mesg, string
rmt_ip, uint16
rmt_port) throws Error
- public void close () throws
Error