summaryrefslogtreecommitdiff
path: root/ASNMP/agent/snmp_agent.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-26 23:28:26 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-26 23:28:26 +0000
commit7726f2060f21b281a7b707a9d9b1eae06e5afd64 (patch)
tree57387cc637e385ac3196e27756dec403493b4de8 /ASNMP/agent/snmp_agent.h
parent8b401094b211c296e56360d6cd8d97153d817296 (diff)
downloadATCD-7726f2060f21b281a7b707a9d9b1eae06e5afd64.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-0_1_11'.TAO-0_1_11
Diffstat (limited to 'ASNMP/agent/snmp_agent.h')
-rw-r--r--ASNMP/agent/snmp_agent.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/ASNMP/agent/snmp_agent.h b/ASNMP/agent/snmp_agent.h
deleted file mode 100644
index a3c13ce89c1..00000000000
--- a/ASNMP/agent/snmp_agent.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* -*-C++-*- */
-
-#ifndef SNMP_AGENT_
-#define SNMP_AGENT_
-// ============================================================================
-//
-// = LIBRARY
-// ASNMP
-//
-// = FILENAME
-// snmp_agent.h
-//
-// = AUTHOR
-// Michael R. MacFaden (mrm@cisco.com)
-//
-// ============================================================================
-
-class agent_impl;
-
-class snmp_agent {
- // = TITLE
- // An SNMP v1 agent class
- //
- // = DESCRIPTION
- // Contructs agents that are capable of processing SNMPv1 requests
- // over the MIB II System group
-
- public:
- snmp_agent(); // uses port 161, public, private
- ~snmp_agent();
-
- int valid() const;
- // did object construct ok
-
- int set_args(int argc, char *argv[]);
- // runtime arguments such as community strings, port to use
-
- int run();
- // begin processing requests
-
- private:
- snmp_agent(const snmp_agent&);
- agent_impl *agent_;
-};
-
-#endif // SNMP_AGENT_