[Implemented] UDP
Posted: Tue Jan 27, 2004 12:55 pm
While I'm here
I might as well ask for a decent cross platform set of UDP commands to complement the TCP ones already provided (Clearly without any connect commands
)
It would also be nice to have multiple port listening so I can have one application listening on more than one local port.
From a syntax point of view it may be as simple as changing NetworkServerEvent to specify a port to catch events on:
Some nice to haves on the networking front would be some RFC 792 ICMP commands like 'PING'
Just some more suggestions


It would also be nice to have multiple port listening so I can have one application listening on more than one local port.
From a syntax point of view it may be as simple as changing NetworkServerEvent to specify a port to catch events on:
Code: Select all
CreateNetworkServer(DataPort)
CreateNetworkServer(CmdPort)
DataPortEvents = NetworkServerEvent(DataPort)
CommandPortEvents = NetworkServerEvent(CmdPort)
Just some more suggestions
