GoLang SNMP::close

request it (302)
GoLang replacement for PHP's SNMP::close [edit | history]



Do you know a GoLang replacement for PHP's SNMP::close? Write it!

PHP SNMP::close

PHP original manual for SNMP::close [ show | php.net ]

SNMP::close

(PHP 5 >= 5.4.0, PHP 7)

SNMP::closeClose SNMP session

Description

public bool SNMP::close ( void )

Frees previously allocated SNMP session object.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 SNMP::close() example

<?php
  $session 
= new SNMP(SNMP::VERSION_1"127.0.0.1""public");
  
# ...
  # get, walk, etc goes here
  # ...
  
$session->close();
?>

See Also