|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-01-13 17:59 UTC] lytboris@php.net
-Assigned To:
+Assigned To: lytboris
[2012-01-13 18:33 UTC] lytboris@php.net
[2012-01-13 18:46 UTC] lytboris@php.net
[2012-01-13 18:48 UTC] lytboris@php.net
-Status: Assigned
+Status: Feedback
[2012-01-13 18:48 UTC] lytboris@php.net
[2012-04-18 09:46 UTC] laruence@php.net
[2012-07-24 23:37 UTC] rasmus@php.net
[2013-02-08 05:10 UTC] lytboris@php.net
-Status: Feedback
+Status: No Feedback
[2013-02-08 05:10 UTC] lytboris@php.net
[2013-09-11 17:32 UTC] hexetic at gmail dot com
[2013-09-11 18:40 UTC] lytboris@php.net
[2013-09-11 18:41 UTC] hexetic at gmail dot com
[2013-11-17 09:34 UTC] laruence@php.net
[2013-11-17 09:34 UTC] laruence@php.net
-Status: No Feedback
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ From net-snmp/include/net-snmp/types.h, struct snmp_session: /** name or address of default peer (may include transport specifier and/or port number) */ char *peername; /** UDP port number of peer. (NO LONGER USED - USE peername INSTEAD) */ u_short remote_port; php-snmp should place non-standard SNMP port into peername after name resolution. Test script: --------------- $session = new SNMP(SNMP::VERSION_1, "$hostname:$port", $community, $timeout, $retries); $session->get(".1"); Expected result: ---------------- $session->get() will send request to "$hostname:$port" Actual result: -------------- $session->get() will send request to "$hostname:161"