summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsnmpd
Commit message (Collapse)AuthorAgeFilesLines
...
* Unbreak the AMD64 build by forgoing the 'snmp_hostres' functionality.obrien2006-01-131-1/+5
| | | | Approved by: harti
* Fix build without -DNDEBUG.harti2006-01-123-7/+7
| | | | Spotted by: obrien
* assert(3) is not used here.obrien2006-01-121-1/+0
|
* Connect the HOSTRES MIB to the build.harti2006-01-091-0/+1
|
* msgharti2006-01-0918-0/+7005
|
* Check for altq presence during module init, and allow module to work even ifphilip2005-11-301-2/+47
| | | | | | | | altq is not present (just disable the altq bits in that case). PR: 89601 Submitted by: Juraj Lutter <otis -at- sk.freebsd.org> MFC after: 3 days
* Fix prototypes.ru2005-11-241-8/+8
|
* Use the new bsd.snmpmod.mk makefile to build the modules. The -I pointersharti2005-11-105-38/+10
| | | | | | into the contrib directory are still necessary for some of the Makefiles, because the C-sources there use non-canonical includes ("" includes) to get at the header files.
* Use the canonical include name for snmpmod.h. The build infrastructure takesharti2005-11-101-1/+1
| | | | | already care to pick up the correct version of the file depending on how we build.
* Catch up with the import of bsnmp-1.11. Add a couple of newharti2005-10-043-1/+6
| | | | configuration flags to CFLAGS.
* Fix unhandled malloc errors.philip2005-08-291-9/+54
| | | | | | | PR: bin/83467 Submitted by: Dan Lukes <dan -at- obluda.cz> Prodded by: glebius MFC after: 3 days
* Fix all the spelling mistakes I could find in the man pages for wordskeramida2005-07-311-7/+7
| | | | | | | | that have at least 3 characters. MFC after: 1 week Thanks to: Music band ``Chingon'' for keeping me company while searching for these.
* 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...)
* No need to specify the include subdirectory. During buildworld theharti2005-05-251-1/+1
| | | | | | correct files are included from a temp. include directory. Explained by: ru
* This module was wrongly including header from /usr/include. Give itharti2005-05-231-1/+1
| | | | the correct path to the source headers.
* Catch up with the bsnmpd daemon's 64bit time ticks.philip2005-05-231-1/+1
|
* The ticks delivered by the SNMP daemon are now 64-bit, so make ourharti2005-05-231-1/+1
| | | | | local tick variable which is used to reduce the number of updates from kernel structures and to ensure intra-PDU consistency also 64 bit.
* Bump the shared library version number of the modules because ofharti2005-05-231-1/+1
| | | | changes in the module interface.
* Enable tcp-wrapper support in the SNMP daemon.harti2005-04-261-1/+2
| | | | Submitted by: glebius
* time_t is signed, so s/uintmax_t/intmax_t/g. Has anyone got an extra pointyphilip2005-03-151-6/+6
| | | | | | | hat for me? I'm running out of them. Spotted by: des Pointy hat to: philip
* Cast time_t to uintmax_t so they can be printed as %ju without breaking onphilip2005-03-151-6/+7
| | | | | | | various architectures. This should appease tinderbox on alpha and not break it anywhere else. Suggested by: harti
* Make this compile properly on 64bit machines.philip2005-03-141-3/+3
| | | | Pointy hat to: philip
* Add snmp_pf, a bsnmpd module for monitoring (not managing!) pf firewalls.philip2005-03-145-1/+2612
| | | | | | | | | Currently implemented are most things related to states and interfaces, todo are address tables and altq. I've tried to keep this roughly in sync with a project implementing this for net-snmpd. Reviewed by: harti, dhartmei MFC after: 1 month
* Finish repo-copy of lib/libbsnmp/modules to usr.sbin/bsnmpd/modules.harti2005-03-142-4/+7
| | | | | 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
|
* Let bsd.prog.mk set SRCS and MAN to their default values.ru2005-01-281-1/+0
|
* 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
* Fix build in the !NOATM case by using the begemot library in place oftrhodes2004-09-241-3/+3
| | | | | | | | using libisc which was a part of BIND8. Discussed with: des, re, dougb Submitted by: harti (one part) Reviewed by: harti (previous version)
* 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.
* Sort SEE ALSO references (in dictionary order, ignoring case).ru2004-07-041-2/+2
|
* Mechanically kill hard sentence breaks.ru2004-07-021-19/+38
|
* Install the MIBs and the definition file to the new location underharti2004-04-151-2/+2
| | | | | | /usr/share/snmp. Noted by: bmah
* Use a MANFILTER to patch the man pages to point to the right path.harti2004-04-142-0/+8
| | | | Noted by: phk
* 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 makefile variable MIBS to BMIBS so that it does notharti2004-01-241-3/+3
| | | | conflict with the environment variable MIBS that is used by net-snmp.
* 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-238-187/+32
| | | | | | | | 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
* Update generated files.harti2004-01-233-3/+21
|
OpenPOWER on IntegriCloud