Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
long IP_Endpoint::IsUDP();
on start { IP_Endpoint UDP:192.168.1.1:4000 addr; if (addr.IsUDP()) { write( "Is UDP endpoint" ); } else if (addr.IsTCP()) { write( "Is TCP endpoint" ); } }