13        constant 
int NO_ERROR          = 0; 
 
   14        constant 
int ERR_INVALID_PARAM = 1; 
 
   15        constant 
int ERR_EXEC_FAIL     = 2; 
 
   16        constant 
int ERR_TIMEOUT       = 3; 
 
   17        constant 
int ERR_RESOLVE_FAIL  = 4; 
 
   32        int ping(in 
string hostName, in 
int count, in 
int size, out vector<string> results);
 
   49                       in 
boolean useIcmp, out vector<string> results);
 
 
 
int listTcpConnections(out vector< string > results)
List the currently active TCP connections.
int ping(in string hostName, in int count, in int size, out vector< string > results)
Ping a network host (send out ICMP echo requests)
void flushRouteCache(in string ifName)
Flush IPv4/IPv6 route cache.
int traceRoute(in string hostName, in int timeout, in boolean useIcmp, out vector< string > results)
Get the route packet trace to a network host.
void resolveHostName(in string hostName, out vector< string > results)
Test whether resolving a host name works and provide diagnostic information.
int listTcpUdpListenSockets(out vector< string > results)
List TCP/UDP listen (server) sockets.