Open topic with navigationDocumentation Index
Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Open topic with navigationDocumentation Index
Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
long IP_Endpoint::IsTCP();
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" );
}
}