[cl-net-snmp-cvs] r13 - tags/0_1_0 www

ctian at common-lisp.net ctian at common-lisp.net
Sun Apr 8 12:41:30 UTC 2007


Author: ctian
Date: Sun Apr  8 08:41:29 2007
New Revision: 13

Added:
   tags/0_1_0/
      - copied from r6, trunk/
   tags/0_1_0/README
      - copied unchanged from r12, trunk/README
   tags/0_1_0/asn1.lisp
      - copied unchanged from r12, trunk/asn1.lisp
   tags/0_1_0/changelog
      - copied unchanged from r12, trunk/changelog
   tags/0_1_0/classes.lisp
      - copied unchanged from r12, trunk/classes.lisp
   tags/0_1_0/constants.lisp
      - copied unchanged from r12, trunk/constants.lisp
   tags/0_1_0/net-snmp.asd
      - copied unchanged from r12, trunk/net-snmp.asd
   tags/0_1_0/package.lisp
      - copied unchanged from r12, trunk/package.lisp
   tags/0_1_0/snmp-api.lisp
      - copied unchanged from r12, trunk/snmp-api.lisp
Modified:
   www/index.shtml
Log:
Make release tag 0.10, and modify webpage

Modified: www/index.shtml
==============================================================================
--- www/index.shtml	(original)
+++ www/index.shtml	Sun Apr  8 08:41:29 2007
@@ -37,15 +37,15 @@
       <div class="deck">
 	<ul>
 	  <li>Base on ASDF and CFFI, can easily run on most CLs.</li>
-	  <li>Only support v1 and v2c now, I'll support v3 some days later.</li>
-	  <li>Only support the GET pdu now.</li>
+	  <li>Support SNMPv1, SNMPv2c, and SNMPv3, but V3 support limited to authNoPriv.</li>
+	  <li>Only support the GET pdu now, but we can get multiple value in lists.</li>
 	</ul>
       </div>
       <div class="rule"> </div>
       <h1>Release</h1>
       <div class="deck">
-	Sat Mar 31 00:37:03 CST 2007: version 0.01,
-	<a href="http://common-lisp.net/project/cl-net-snmp/release/cl-net-snmp_0.01.tar.gz">
+	Sun Apr  8 20:11:52 CST 2007: version 0.10,
+	<a href="http://common-lisp.net/project/cl-net-snmp/release/cl-net-snmp_0.10.tar.gz">
 	  get the source.</a><br/>
       </div>
       <div class="rule"> </div>
@@ -63,26 +63,7 @@
       <h1>Document</h1>
       <div class="deck">
 	I define two classes: 'snmp-session and 'oid, and a 'snmp-get-msg method to do the
-	work, see sample usage:
-	<pre>
-CL-USER> (in-package :snmp)
-#<PACKAGE "ORG.NET-SNMP">
-NET-SNMP> (snmp-msg-get "binghe.people.163.org" "sysDescr.0")
-"Linux binghe.people.163.org 2.6.18-4-686 #1 SMP Wed Feb 21 16:06:54 UTC 2007 i686"
-NET-SNMP> (snmp-msg-get "binghe.people.163.org" "laLoad.1")
-"0.00"
-NET-SNMP> (defvar binghe (make-instance 'snmp-session
-                                           :peername "binghe.people.163.org"
-                                           :version +snmp-version-2c+
-                                           :community "public"))
-BINGHE
-NET-SNMP> (snmp-msg-get binghe "sysDescr.0")
-"Linux binghe.people.163.org 2.6.18-4-686 #1 SMP Wed Feb 21 16:06:54 UTC 2007 i686"
-NET-SNMP> (defvar descr (make-instance 'oid :name "sysDescr.0"))
-DESCR
-NET-SNMP> (snmp-msg-get binghe descr)
-"Linux binghe.people.163.org 2.6.18-4-686 #1 SMP Wed Feb 21 16:06:54 UTC 2007 i686"
-	</pre>
+	work, see README file in source code.
       </div>
       <div class="rule"> </div>
       <h1>Relate Lisp Projects</h1>



More information about the Cl-net-snmp-cvs mailing list