If I have an udp server "running":
/sockudp -k pacuserv 8000
and a client "connected" to it:
/sockudp -kn pacuclient 127.0.0.1 8000 this is a test
If I type /sockclose pacuclient, it triggers on sockclose for the server with $sockerr set to 3:
on *:sockclose:pacuserv:{
echo -s SERVER UDP SOCKCLOSE $sockerr -- $sock(pacuserv).wsmsg
}SERVER UDP SOCKCLOSE 3 -- [10054] Connection reset by peer
Is this normal?