Is there any way for Kdb+/q to listen for UDP packets?
yes, but not out of the box.
You can write a c function to listen on a port and accept new connections, register the socket with sd1 so that when data is ready to read on the socket your function is called back. When you have received sufficient data, you can then call back into q from c.
See
Look into netcat,nmap,ncat cmd line programs and look into interfacingwith qOn Jun 29, 6:12?pm, DuoCentillion <duocentill…> wrote:> Is there any way for Kdb+/q to listen for UDP packets?</duocentill…>