summaryrefslogtreecommitdiff
path: root/ASNMP/agent/main.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /ASNMP/agent/main.cpp
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'ASNMP/agent/main.cpp')
-rw-r--r--ASNMP/agent/main.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/ASNMP/agent/main.cpp b/ASNMP/agent/main.cpp
deleted file mode 100644
index c9ae175d04b..00000000000
--- a/ASNMP/agent/main.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// $Id$
-
-// This server daemon processes SNMP Version 1 get, get-next, and set
-// commands. over the MIB II "System" group only.
-
-#include "ace/config-all.h"
-#include "snmp_agent.h"
-
-ACE_RCSID(agent, main, "$Id$")
-
-int
-main (int argc, char *argv[])
-{
- ACE::init ();
- snmp_agent the_agent;
-
- if (the_agent.set_args(argc, argv))
- return 1;
-
- if (!the_agent.valid()) {
- return 1;
- }
-
- the_agent.run(); // main loop
-
- return 0;
-}