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;
31 int ping(in
string hostName, in
int count, out vector<string> results);
48 in
boolean useIcmp, out vector<string> results);
Diagnostics interface.
Definition: Diagnostics.idl:12
int listTcpConnections(out vector< string > results)
List the currently active TCP connections.
int ping(in string hostName, in int count, out vector< string > results)
Ping a network host (send out ICMP echo requests)
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.
Network Configuration.
Definition: Diagnostics.idl:9