[cl-plus-ssl-cvs] CVS cl+ssl

dlichteblau dlichteblau at common-lisp.net
Sat Jul 7 17:42:22 UTC 2007


Update of /project/cl-plus-ssl/cvsroot/cl+ssl
In directory clnet:/tmp/cvs-serv30757

Modified Files:
	index.html 
Log Message:
fixed the description of stream-fd


--- /project/cl-plus-ssl/cvsroot/cl+ssl/index.html	2007/07/07 16:47:57	1.12
+++ /project/cl-plus-ssl/cvsroot/cl+ssl/index.html	2007/07/07 17:42:22	1.13
@@ -128,19 +128,24 @@
 
     <h3>API functions</h3>
     <p>
-      <div class="def">Function CL+SSL:STREAM-FD (stream)
-	Return <tt>stream</tt>'s file descriptor as an integer, if
-	known.  Otherwise return <tt>stream</tt> itself.  Pass the
-	return value of this function to <tt>make-ssl-client-stream</tt>
-	or <tt>make-ssl-servre-stream</tt>, which are faster when
-	accessing file descriptors directly.
-      </div>
+      <div class="def">Function CL+SSL:STREAM-FD (stream)</div>
+      Return <tt>stream</tt>'s file descriptor as an integer, if
+      known.  Otherwise return <tt>stream</tt> itself.
+    </p>
+    <p>
+      Pass the
+      return value of this function to <tt>make-ssl-client-stream</tt>
+      or <tt>make-ssl-servre-stream</tt>, which are faster when
+      accessing file descriptors directly.
     </p>
     <p>
       <div class="def">Function CL+SSL:MAKE-SSL-CLIENT-STREAM (fd-or-stream &key external-format certificate key close-callback)</div>
       Return an SSL stream for the client socket <tt>fd-or-stream</tt>.
       All reads and writes to this SSL stream will be pushed through the
-      SSL connection.  If <tt>fd-or-stream</tt> is a lisp stream, it can
+      SSL connection.
+    </p>
+    <p>
+      If <tt>fd-or-stream</tt> is a lisp stream, it can
       the SSL stream will close it automatically.  File descriptors are
       not closed automatically.  However, if <tt>close-callback</tt> is
       non-nil, it will be called with zero arguments when the SSL stream
@@ -161,7 +166,10 @@
       <div class="def">Function CL+SSL:MAKE-SSL-SERVER-STREAM (fd-or-stream &key external-format certificate key close-callback)</div>
       Return an SSL stream for the server socket <tt>fd-or-stream</tt>.  All
       reads and writes to this server stream will be pushed through the
-      OpenSSL library. If <tt>fd-or-stream</tt> is a lisp stream, it can
+      OpenSSL library.
+    </p>
+    <p>
+      If <tt>fd-or-stream</tt> is a lisp stream, it can
       the SSL stream will close it automatically.  File descriptors are
       not closed automatically.  However, if <tt>close-callback</tt> is
       non-nil, it will be called with zero arguments when the SSL stream




More information about the cl-plus-ssl-cvs mailing list