summaryrefslogtreecommitdiff
path: root/ext/snmp
Commit message (Collapse)AuthorAgeFilesLines
* MFH: Nuked EOLs from error messagesfoobar2005-08-181-6/+6
|
* - Bumber up yearfoobar2005-08-032-2/+2
|
* - Unify the "configure --help" textsfoobar2005-05-291-4/+3
|
* wsfoobar2005-05-101-1/+1
|
* MFB: - Fixed bug #32613 (ext/snmp: use of snmp_shutdown() causes snmpapp.conffoobar2005-05-101-0/+5
| | | | | access errors). (Jani, ric at arizona dot edu)
* Better use zval_ptr_dtor() instead (thanks Andi)foobar2005-04-271-2/+1
|
* - Fix memleakfoobar2005-04-231-0/+2
|
* - Use correct type (bug #32720)foobar2005-04-151-2/+2
|
* Converting the usage of the integer based internal commands intoHarrie Hazewinkel2005-04-111-55/+60
| | | | | MACROS to ease future extensions.
* Adding support for a getbulk oriented walk.Harrie Hazewinkel2005-04-111-14/+26
| | | | | The getbulk can only be used for SNMPv2c and SNMPv3.
* Adding SNMPv2 community based (i.e. protocol version) functions.Harrie Hazewinkel2005-03-162-9/+63
|
* Missed one place..foobar2005-02-121-1/+1
|
* This was not good idea.foobar2005-02-121-1/+1
|
* - Fix some memory leaksfoobar2005-01-082-4/+15
|
* Fixed bug #30995 (snmp extension does not build with net-snmp 5.2).Ilia Alshanetsky2004-12-071-1/+16
|
* removed unwanted NEW_LIBC checks and commentsAnantha Kesari H Y2004-09-271-6/+0
|
* Fixed bug #27661 (snmpget() does not close the socket in some cases).Ilia Alshanetsky2004-03-231-0/+1
|
* Fixed possible overflow.Ilia Alshanetsky2004-02-031-2/+2
|
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-171-4/+4
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Make these build with new win32 build system.Wez Furlong2003-12-192-1/+23
|
* Fixed formatting issues (patch by: Joe Orton)Ilia Alshanetsky2003-10-171-3/+3
|
* Fixed bug #25636 (SNMP Session not closed on success).Ilia Alshanetsky2003-09-231-0/+1
| | | | | Patch by: nesslage[at]mwsc[dot]edu
* - Fixed bug #25604 (HAVE_SNMP_PARSE_OID undefined with phpize build)foobar2003-09-231-1/+8
|
* Remove 'proto' from internal functionsZeev Suraski2003-08-071-6/+6
|
* Bug 24760 fix, in which the port number when non-default is not handledHarrie Hazewinkel2003-07-241-2/+0
| | | | | | | | correctly and ends up as the default port. This seems to be caused by some buffer overflow where the port number is assign zero, even though it it is not assigned to the port variable. FIx was reported and a fix proposed by "chuck+php at 2003 dot snew dot com"
* - Added snmp_read_mib() which reads a MIB file into the active MIB tree.foobar2003-07-162-0/+30
|
* - Fixes some problems (debug mode only). (bug #23051 and bug #23685)foobar2003-07-161-1/+3
|
* Remove extra proto. (copy/paste error?)foobar2003-07-161-2/+0
|
* Fixed bug #22529 (object_id parameter in all snmp*() functions broken.)foobar2003-07-161-1/+1
|
* Applying the correct format of the CREDITS.Harrie Hazewinkel2003-07-141-5/+1
|
* Updating the CREDITS with those who are indicated as authors in the code.Harrie Hazewinkel2003-07-141-0/+3
|
* Adding an SNMP GETNEXT.Harrie Hazewinkel2003-07-142-23/+51
| | | | | | | | | | | | This is a basic SNMP operation that retrieves the next value as the one provided to the command. NOTE: snmpgetnext does not follow the official naming convetions of functions, but now it is equal to it version 1 equivalents snmpget and snmpset. I also would like to reserve the snmp_getnext for a function to which a session can be given instead of the multiple values to create the session internally. (Work in progress).
* (RE applying)Harrie Hazewinkel2003-07-141-6/+0
| | | | | | Cleaning up some very old definitions of version 3.3.1 until 3.5.3. Those versions are that old that people better upgrade the SNMP libraries.
* (RE-)Applying the contributed patch of Johan Hanne to the main tree.Harrie Hazewinkel2003-07-142-8/+181
| | | | | | | | | | The patch enables control on the way the values are returned into the PHP script, instaed of always strings. Also the type of the value is now returned when configured to do so. This enables better management scripts to do more automatic processing and value calculations. (By default the values are returned as strings, as was before)
* - Unified PHP_SETUP_OPENSSL with other PHP_SETUP_* macros.foobar2003-06-241-6/+14
|
* updating license information in the headers.James Cox2003-06-102-6/+6
|
* MFBfoobar2003-02-211-20/+23
|
* MFB: Sanity check.foobar2003-02-171-1/+11
|
* Win32 build improvementsZeev Suraski2003-02-171-2/+0
|
* A add much more useful select(2) implementation than is provided byWez Furlong2003-02-161-1/+1
| | | | | | | | | | | | | windows sockets. The winsock implementation will only work with sockets; our implementation works with sockets and file descriptors. By association, stream_select() will now operate correctly with files, pipes and sockets. This change required linking against the winsock2 library. In terms of compatibility, only older versions of windows 95 do not have winsock2 installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user. Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x.
* Fixed bug: #20857, snmpset() failsfoobar2003-01-241-6/+13
|
* ws fixesfoobar2003-01-241-24/+25
|
* Changed php_error to php_error_docref.Ilia Alshanetsky2003-01-191-7/+6
|
* Getting rid of the old API parsing code.Ilia Alshanetsky2003-01-151-7/+7
|
* Bump year.Sebastian Bergmann2002-12-312-2/+2
|
* MFB: Fix ZTS build.Edin Kadribasic2002-12-101-10/+10
|
* - Renamed snmpv3_* to snmp3_*Derick Rethans2002-12-052-218/+189
| | | | | | - Conversion to php_error_docref - Whitespace fixes
* Adding a more detail print functions, that assist/make it easier forHarrie Hazewinkel2002-11-112-0/+40
| | | | | | | creating SNMP scripts. They are only supported when you have NET-SNMP. Need to be documented still though.