summaryrefslogtreecommitdiffstats
path: root/lib/libbsnmp
Commit message (Collapse)AuthorAgeFilesLines
* Use src.opts.mk in preference to bsd.own.mk except where we need stuffimp2014-05-061-1/+1
| | | | from the latter.
* Add missing DPADDantoine2013-01-011-0/+1
|
* Bump shared libraries version numbers in preparation for 9.0.kib2011-08-281-1/+1
| | | | | | | | This time, only libraries which ABI has been changed compared to stable/8, are bumped. ABI analysis done by: Gleb Kurtsou Approved by: re (kensmith)
* Unbreak the build by temprorarily not using include directives insyrinx2010-12-201-4/+0
| | | | | bsnmpd(1)' def files, until bsd.snmpmod.mk & Makefiles are fixed to pass proper include path flags to gensnmptree.
* Bring in a SNMP module that allows configuration of SNMPv3 Notification targets.syrinx2010-12-201-0/+4
| | | | | | Sponsored by: The FreeBSD Foundation Reviewed by: philip Approved by: philip
* In bsnmpd(1) add support for SNMPv3 message processing model, including ↵syrinx2010-12-081-2/+9
| | | | | | | | message authentication, packet encryption & view-based access control (RFC 3412, 3414, 3415). Sponsored by: The FreeBSD Foundation Reviewed by: philip@ (mostly) Approved by: philip@
* Always assign WARNS using ?=uqs2010-03-022-5/+4
| | | | | | | - fix some nearby style bugs - include Makefile.inc where it makes sense and reduces duplication Approved by: ed (co-mentor)
* Bump the version of all non-symbol-versioned shared libraries inkensmith2009-07-191-1/+1
| | | | | | | | preparation for 8.0-RELEASE. Add the previous version of those libraries to ObsoleteFiles.inc and bump __FreeBSD_Version. Reviewed by: kib Approved by: re (rwatson)
* - Bump share library version which were missed in last bumprafan2007-06-181-1/+1
| | | | | | Reported by: jhb Discussed with: deischen, des, doubg, harti Approved by: re (kensmith)
* Catch up with the import of bsnmp-1.11. Add a couple of newharti2005-10-041-0/+2
| | | | configuration flags to CFLAGS and set the WARNS level to 6.
* Bump the shared library version number of all libraries that have notkensmith2005-07-221-1/+1
| | | | | | | been bumped since RELENG_5. Reviewed by: ru Approved by: re (not needed for commit check but in principle...)
* Finish repo-copy of lib/libbsnmp/modules to usr.sbin/bsnmpd/modules.harti2005-03-1414-3255/+1
| | | | | These modules are modules for the daemon, not for the library so they should be where the daemon is.
* who's -> whoseru2005-02-131-1/+1
|
* Fixed punctuation in xrefs.ru2005-01-211-2/+2
|
* NOATM -> NO_ATMru2004-12-211-1/+1
|
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* Delete a .Fn that had no argument andkeramida2004-10-091-1/+1
| | | | | | properly terminate a .Bl with a matching .El MFC after: 3 days
* Link to the build again. The problem was that we need a newharti2004-08-111-3/+3
| | | | | gensnmptree for the .def file to parse. This was fixed in Makefile.inc1.
* Again something bad is happening so comment out the ATM module.harti2004-08-111-3/+3
|
* Now, after the import of NgATM-1.1, re-enable the atm module.harti2004-08-111-1/+1
|
* Disable the snmp_atm module until the source gets fixed. This will unbreakscottl2004-08-101-1/+1
| | | | this portion of the build.
* Link the snmp_atm module to the build unless NOATM is defined.harti2004-08-091-1/+6
|
* Now that gensnmptree can read and merge more than one tree makeharti2004-08-091-4/+4
| | | | | the rule so that the tree .c and .h files can be produced from several trees.
* A module for bsnmpd(1) that exports a MIB that contains information aboutharti2004-08-094-0/+478
| | | | the local ATM interfaces and allows to change some parameters via SNMP.
* Add the right CFLAGS to show that we have err.h, getaddrinfo and strlcpy.harti2004-08-061-2/+2
| | | | Add support.c to the list of source files.
* Move libbsnmp.so to /lib so that it is available to atmconfig.harti2004-08-041-0/+1
| | | | | | At the moment the only dependency on this library is bsnmpd. Approved by: silence on re@
* Sort SEE ALSO references (in dictionary order, ignoring case).ru2004-07-041-2/+2
|
* Mechanically kill hard sentence breaks.ru2004-07-021-19/+38
|
* Use a MANFILTER to patch the man pages to point to the right path.harti2004-04-141-0/+4
| | | | Noted by: phk
* Bump the shared library version number for the bsnmp v1.6 importharti2004-04-141-1/+1
| | | | because of incompatible interface changes.
* Put the name of the module first in the list of all .Nm calls withharti2004-04-141-0/+1
| | | | | argument. This makes the output of calling .Nm without an argument more senseful later on.
* Compare with 0 if comparing an integer, not with NULL.harti2004-04-141-1/+1
|
* Move the SNMP MIBs and tree definitions from /usr/share/bsnmp toharti2004-04-141-2/+2
| | | | | /usr/share/snmp. This mirrors the use of /usr/local/share/snmp and makes also more sense when non-bsnmp-specific MIBs go in.
* Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror)markm2004-03-051-0/+1
| | | | | | | | | | | | | | | that this provokes. "Wherever possible" means "In the kernel OR NOT C++" (implying C). There are places where (void *) pointers are not valid, such as for function pointers, but in the special case of (void *)0, agreement settles on it being OK. Most of the fixes were NULL where an integer zero was needed; many of the fixes were NULL where ascii <nul> ('\0') was needed, and a few were just "other". Tested on: i386 sparc64
* Rename the MIBS makefile variable to BMIBS so that it does not conflictharti2004-01-242-4/+4
| | | | with the environment variable MIBS that is used by net-snmp.
* Create the OID and tree files while building the modules and the daemonharti2004-01-2311-453/+13
| | | | | | | | instead of creating them by hand and storing them in the CVS tree. Add gensnmptree to the bootstrap tools (it is used to generated these files). This simplifies the update procedure. Submitted by: ru
* Style: remove an empty line.harti2004-01-231-1/+0
|
* Clean up makefiles.ru2004-01-196-23/+15
| | | | Reviewed by: harti
* Fixed the fatal bug: CFLAGS should be added to, not overridden.ru2004-01-171-1/+1
| | | | This prevented CPU and optimization flags to be added here.
* Replace all uses of the old netgraph constants NG_*LEN by the newharti2003-11-153-55/+55
| | | | | | constants NG_*SIZ that include the trailing NUL byte. This change is mostly mechanical except for the replacement of a couple of snprintf() and sprintf() calls with strlcpy.
* Add an empty definition of the MIBS variable so that the makefile doesharti2003-11-131-0/+1
| | | | | | not try to use a MIBS definition from the environment. Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>
* The snmp_netgraph module depends on libnetgraph. So add a dependency andharti2003-11-121-0/+3
| | | | | | add libnetgraph to the list of prebuilt libraries in the main Makefile. Reviewed by: ru
* Fix the build by adjusting the include directives. The problem washarti2003-11-102-4/+6
| | | | | that the sources use "..." includes to get at include files that later on reside in an include sub-directory.
* Add build infrastructure for libbsnmp and the modules. Add theharti2003-11-1020-0/+3216
netgraph module for the SNMP daemon.
OpenPOWER on IntegriCloud