Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] UDP Networking (fwd)

From: list::brando::rebol::net at: 19-Oct-2000 2:31

---------- Forwarded message ---------- Date: Thu, 19 Oct 2000 09:36:41 +0200 (DFT) From: Frank Sievertsen <[fsievert--uos--de]> To: [list--rebol--com] Subject: UDP Networking Hi! Having an udp-server s: open udp:// and receiving a message copy/part s 1 == "Blubb" How to find out, from which ip and port the message has been send? I know I can answer to the client, but I need to find out on which port/ip it lives. This feature is needed since udp often works this way. Having a server. - Incoming message. - Opening new port - Answering the messages with the new port - All further communication is done by the new port, while the server port only receives the first messages from each client. Frank