diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-16 22:27:45 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-16 22:27:45 +0000 |
commit | ad598a27060ce2e1b23831122b8614c408d9e6c3 (patch) | |
tree | 4037c28aaae99d807282a468c6ff5258c3d5147e /ASNMP/asnmp/sagent.cpp | |
parent | 270be8f62920676ab389191be0f677eeaac6fef8 (diff) | |
download | ATCD-ad598a27060ce2e1b23831122b8614c408d9e6c3.tar.gz |
replace TRUE with 1, and FALSE and NULL with 0
Diffstat (limited to 'ASNMP/asnmp/sagent.cpp')
-rw-r--r-- | ASNMP/asnmp/sagent.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/ASNMP/asnmp/sagent.cpp b/ASNMP/asnmp/sagent.cpp index 489975afbc1..fc56a2c728f 100644 --- a/ASNMP/asnmp/sagent.cpp +++ b/ASNMP/asnmp/sagent.cpp @@ -10,11 +10,11 @@ // // = DESCRIPTION // SNMP agent class definition. The sagent class provides an object oriented -// approach for creating SNMP Agents. The sagent class is an encapsulation -// of SNMP sessions, gets, sets, etc. +// approach for creating SNMP Agents. The sagent class is an encapsulation +// of SNMP sessions, gets, sets, etc. // // = AUTHOR -// Michael R. MacFaden +// Michael R. MacFaden // // ============================================================================ #include "ace/Reactor.h" @@ -24,11 +24,11 @@ #include "asnmp/vb.h" // snbmp++ vb class #include "asnmp/target.h" // snmp++ target class #include "asnmp/pdu.h" // snmp++ pdu class -#include "asnmp/snmperrs.h" // error macros and strings +#include "asnmp/snmperrs.h" // error macros and strings #include "asnmp/address.h" // snmp++ address class defs -#include "asnmp/snmp.h" // manager snmp interface +#include "asnmp/snmp.h" // manager snmp interface #include "asnmp/sagent.h" // agent interface -#include "asnmp/transaction.h" // convert from wire to API +#include "asnmp/transaction.h" // convert from wire to API ACE_RCSID(asnmp, sagent, "$Id$") @@ -95,4 +95,3 @@ int sagent::respond(Pdu& pdu,UdpTarget& tgt) tr.send(); return 0; } - |