snmpStopAgent (Function)

Top  Previous  Next

Architecture:

NX32L

Device support:

All NX devices

Firmware version:

1.60.00


Stop the publishing agent and unpublish all published SNMP variables.

 

Input:

None.

 

Output:

None.

 

 

Returns: INT

1

- Success.

0

- This function is not supported.

-19

- Publishing agent is not running.

 

Declaration

FUNCTION snmpStopAgent : INT;
 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
BEGIN
...
  snmpStopAgent();
...
END