RE: Agent command line options

2009-10-17 Thread Steve Stetka
11:32:45 -0600 From: eggyk...@gmail.com To: net-snmp-users@lists.sourceforge.net Subject: Agent command line options I'm writing an agent which takes a few command line switches, including a YAML configuration file. My agent initializes itself like this: init_agent(some string); init_mibs

Re: Agent command line options

2009-10-17 Thread Joshua Tolley
To: net-snmp-users@lists.sourceforge.net Subject: Agent command line options I'm writing an agent which takes a few command line switches, including a YAML configuration file. My agent initializes itself like this: init_agent(some string); init_mibs(); init_snmp

Agent command line options

2009-10-16 Thread Joshua Tolley
I'm writing an agent which takes a few command line switches, including a YAML configuration file. My agent initializes itself like this: init_agent(some string); init_mibs(); init_snmp(some string); init_mibs() is my own function that registers the MIBs this agent will support. The problem is