Re: Problems building 5.2.4.1 with IPv6 support on Windows

2010-04-30 Thread Bart Van Assche
On Fri, Apr 30, 2010 at 8:40 PM, Ron Bets wrote: > Thanks again. I had noticed that in the readme, and the project is > apparently attempting to link against the open ssl lib, but there seems to > be an additional external dependency that is not met. Here is an example of > the actual linker er

RE: Problems building 5.2.4.1 with IPv6 support on Windows

2010-04-30 Thread Ron Bets
Thanks again. I had noticed that in the readme, and the project is apparently attempting to link against the open ssl lib, but there seems to be an additional external dependency that is not met. Here is an example of the actual linker error: 'libeay32.lib(rand_win.obj) : error LNK2001: unres

Re: Problems building 5.2.4.1 with IPv6 support on Windows

2010-04-30 Thread Bart Van Assche
On Fri, Apr 30, 2010 at 7:40 PM, Ron Bets wrote: > Thanks. The PSDK include directory does come before the VC98 include dirs. > I *think* I was successful building the libs from the IDE, but the errors > persist from the cmd line. However, when I try to build an executable, > e.g., snmpwalk, I

RE: Problems building 5.2.4.1 with IPv6 support on Windows

2010-04-30 Thread Ron Bets
Thanks. The PSDK include directory does come before the VC98 include dirs. I *think* I was successful building the libs from the IDE, but the errors persist from the cmd line. However, when I try to build an executable, e.g., snmpwalk, I get linker errors (unresolved external symbol), apparen

Re: Problems building 5.2.4.1 with IPv6 support on Windows

2010-04-30 Thread Bart Van Assche
On Fri, Apr 30, 2010 at 6:00 PM, Ron Bets wrote: > Hi folks. I am struggling a little bit, trying to get 5.2.4.1 built under > Windows with IPv6 support enabled. My environment is something like this: > > Visual Studio 6.0 sp5 > ActivePerl > Microsoft SDK (Feb 2003) > > I have run "Register PSD

Re: SF.net SVN: net-snmp:[18623] trunk/net-snmp

2010-04-30 Thread Robert Story
On Fri, 30 Apr 2010 17:13:49 +0200 Bart wrote: BVA> > entry = itr_first; BVA> > for( ; entry; ++itr) { BVA> > // ... BVA> > if (condition) { BVA> >itr_remove; BVA> >continue; BVA> > } BVA> > // ... BVA> > } BVA> > BVA> BVA> If "++itr" accesses the memory itr poin

Problems building 5.2.4.1 with IPv6 support on Windows

2010-04-30 Thread Ron Bets
Hi folks. I am struggling a little bit, trying to get 5.2.4.1 built under Windows with IPv6 support enabled. My environment is something like this: Visual Studio 6.0 sp5 ActivePerl Microsoft SDK (Feb 2003) I have run "Register PSDK Directories with Visual Studio" and VCVARS32.BAT. I have trie

Re: SF.net SVN: net-snmp:[18623] trunk/net-snmp

2010-04-30 Thread Bart Van Assche
On Fri, Apr 30, 2010 at 2:48 PM, Robert Story wrote: > On Thu, 29 Apr 2010 08:20:35 +0200 Magnus wrote: > MF> > NEWS: snmplib: add remove function to container iterator; implement > it for > MF> > binary_array > MF> > MF> You choose to let iterator::remove move to the previous entry. I assume >

RE: mib2c in what package?

2010-04-30 Thread jc_walker
I found the answer to my own question. The package on SLES 11 is: net-snmp-devel-5.4.2.1-8.1 It can NOT be found on the sourceforge page. I had to go to a network administrator to get the package. Judy -Original Message- From: Robert Story [mailto:[email protected]] Sent: Friday,

Re: Subagent example application problem (example-demon)

2010-04-30 Thread Nadia Bibbs
I just didn't cut and paste it in the message. I did see a message about it being registered on both sides though. Yesterday, I read in a previous thread that agentX does not support udp so I switched to tcp and it did get a bit farther. I at least saw the message being forwarded to subagent

Re: Subagent example application problem (example-demon)

2010-04-30 Thread Robert Story
On Wed, 28 Apr 2010 09:28:31 -0500 Nadia wrote: NB> I am new to net-snmp and I am trying to run the example application that is given on the website but the master doesn't seem to forward the get request onto the subagent. Well, I believe that is how it should work. I don't see any debug messag

Re: mib2c in what package?

2010-04-30 Thread Robert Story
On Thu, 29 Apr 2010 09:31:44 -0600 [email protected] wrote: JC> I've installed many net-snmp packages of various versions on my SLES 11 JC> box. I have yet to find where mib2c is installed. What rpm installs JC> mib2c? Not familiar with SLES.. Is there a way to list all net-snmp* packages?

Re: SF.net SVN: net-snmp:[18623] trunk/net-snmp

2010-04-30 Thread Robert Story
On Thu, 29 Apr 2010 21:22:25 +0200 Bart wrote: BVA> template BVA> inline void erase_value(T& container, const U& value) BVA> { BVA> typename T::iterator next; BVA> for (typename T::iterator p = container.begin(); p != container.end(); BVA> p = next) BVA> { BVA> next =

Re: SF.net SVN: net-snmp:[18623] trunk/net-snmp

2010-04-30 Thread Robert Story
On Thu, 29 Apr 2010 08:20:35 +0200 Magnus wrote: MF> > NEWS: snmplib: add remove function to container iterator; implement it for MF> > binary_array MF> MF> You choose to let iterator::remove move to the previous entry. I assume MF> this means you are ruling out the possibility of a single-linked