[usocket-cvs] r268 - public_html

ehuelsmann at common-lisp.net ehuelsmann at common-lisp.net
Wed Jun 6 17:46:16 UTC 2007


Author: ehuelsmann
Date: Wed Jun  6 13:46:15 2007
New Revision: 268

Modified:
   public_html/api-docs.shtml
Log:
DTD compliance.

Modified: public_html/api-docs.shtml
==============================================================================
--- public_html/api-docs.shtml	(original)
+++ public_html/api-docs.shtml	Wed Jun  6 13:46:15 2007
@@ -55,9 +55,9 @@
 <dt>Specification of a <em>host</em> parameter</dt>
 <dd>A <em>host</em> parameter may be any one of 
     <ul>
-    <li>32-bit positive integer,
-    <li>a string containing an IP addres in dotted notation, or
-    <li> a host name to be resolved through DNS lookup.
+    <li>32-bit positive integer,</li>
+    <li>a string containing an IP addres in dotted notation, or</li>
+    <li> a host name to be resolved through DNS lookup.</li>
     </ul>
 </dd>
 </dl>
@@ -65,7 +65,7 @@
 <h2>Functions for socket creation and manipulation</h2>
 
 <dl>
-<dt class="sym"><span class=function-name>socket-connect</span> host port &key element-type => socket</dt>
+<dt class="sym"><span class="function-name">socket-connect</span> host port &key element-type => socket</dt>
 
 <dd>
 <p>Creates a tcp (stream) socket to the <em>host</em> and <em>port</em> specified. The return value is
@@ -75,7 +75,7 @@
 construction of the associated stream.</p></dd>
 
 <dt class="sym">
-<span class=function-name>socket-listen</span> host port &key reuse-address backlog element-type => socket</dt>
+<span class="function-name">socket-listen</span> host port &key reuse-address backlog element-type => socket</dt>
 <dd><p>Creates and returns a passive ("server") socket associated with <em>host</em> and <em>port</em>.
        The object returned is of subtype <a href="#stream-server-usocket">stream-server-usocket</a>.</p>
     <p><em>host</em> names a local interface.<br />
@@ -87,7 +87,7 @@
     </p></dd>
 
 
-<dt class="sym"><span class=function-name><a name="socket-accept">socket-accept</a></span> socket &key element-type => new-socket</dt>
+<dt class="sym"><span class="function-name"><a name="socket-accept">socket-accept</a></span> socket &key element-type => new-socket</dt>
 <dd><p>Creates and returns an active ("connected") stream socket <em>new-socket</em> from the
        <em>socket</em> passed. The return value is a socket object of class 
        <em><a href="#stream-usocket">stream-usocket</a></em>.</p>
@@ -97,7 +97,7 @@
     </p>
 </dd>
 
-<dt class="sym"><span class=function-name>socket-close</span> socket</dt>
+<dt class="sym"><span class="function-name">socket-close</span> socket</dt>
 <dd><p>Flushes the stream associated with the socket and closes the socket connection.</p></dd>
 
 
@@ -122,7 +122,7 @@
   <dt class="sym"><span class="class-name"><a name="usocket">usocket</a></span></dt>
   <dd>Slots:
     <dl>
-    <dt><span class="slot-name">socket</span> :accessor socket</td>
+    <dt><span class="slot-name">socket</span> :accessor socket</dt>
     <dd><p>Used to store sockets as used by the current implementation - may be any of socket handles, socket objects and stream objects</p></dd></dl>
   </dd>
 
@@ -130,7 +130,7 @@
 <dd>Parent classes: usocket<br />
     Slots:
     <dl>
-    <dt><span class="slot-name">stream</span> :accessor socket-stream</td>
+    <dt><span class="slot-name">stream</span> :accessor socket-stream</dt>
     <dd><p>Used to store the stream associated with the tcp socket connection.<br />
            When you want to write to the socket stream, use this function.</p></dd></dl>
 </dd>
@@ -139,7 +139,7 @@
 <dd>Parent classes: usocket<br />
     Slots:
     <dl>
-    <dt><span class="slot-name">element-type</span> :reader element-type</td>
+    <dt><span class="slot-name">element-type</span> :reader element-type</dt>
     <dd><p>Indicates the default element-type to be used when constructing streams off this socket when
         no element type is specified in the call to <em><a href="#socket-accept">socket-accept</a></em>.</p></dd></dl>
 </dd>



More information about the usocket-cvs mailing list