0.8.4.32
[sbcl.git] / contrib / sb-bsd-sockets / inet.lisp
index eeb2b25..df52637 100644 (file)
@@ -6,7 +6,7 @@
 <ul>
 <li>These functions do not accept hostnames directly: see <a href="#name-service">name resolution</a>
 <li>Internet <b>addresses</b> are represented by vectors of <tt>(unsigned-byte 8)</tt> - viz. <tt>#(127 0 0 1)</tt>.  <b>Ports</b> are just integers: <tt>6010</tt>.  No conversion between network- and host-order data is needed from the user of this package.
-<li><b><i>socket addresses</i></b> are represented by the two values for <b>address</b> and <b>port</b>, so for example, <tt>(<a href="#SOCKET-CONNECT">socket-connect</a> s #(192.168.1.1) 80)</tt>
+<li><b><i>socket addresses</i></b> are represented by the two values for <b>address</b> and <b>port</b>, so for example, <tt>(<a href="#SOCKET-CONNECT">socket-connect</a> s #(192 168 1 1) 80)</tt>
 </ul>
 
 |#
@@ -85,10 +85,6 @@ using getprotobyname(2) which typically looks in NIS or /etc/protocols"
    (+ (* 256 (sockint::sockaddr-in-port sockaddr 0))
       (sockint::sockaddr-in-port sockaddr 1))))  
    
-
 (defun make-inet-socket (type protocol)
   "Make an INET socket.  Deprecated in favour of make-instance"
   (make-instance 'inet-socket :type type :protocol protocol))
-
-
-