X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=sockets.lisp;h=74fa27e1a82d9d8acf6a5adc8535eea213648d3a;hp=f7c8408476e038fd188f69a86f3eaba458b4c1f7;hb=526eef1b59e071cbb4ecd35f73a14c1a3f8e32b6;hpb=5738e60dc3724dc7d022d0fd2d5f2dbe337be470 diff --git a/sockets.lisp b/sockets.lisp index f7c8408..74fa27e 100644 --- a/sockets.lisp +++ b/sockets.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg with excerpts from portableaserve ;;;; Date Started: Jun 2003 ;;;; -;;;; $Id: sockets.lisp,v 1.5 2003/07/21 00:52:56 kevin Exp $ +;;;; $Id$ ;;;; ************************************************************************* (in-package #:kmrcl) @@ -69,7 +69,7 @@ setsockopt SO_REUSEADDR if :reuse is not nil" (values sock sock)) #+clisp (let ((sock (ext:socket-accept listener))) - (value sock sock)) + (values sock sock)) #+cmu (progn (mp:process-wait-until-fd-usable listener :input) @@ -127,13 +127,13 @@ setsockopt SO_REUSEADDR if :reuse is not nil" "Convert from dotted string to 32-bit integer." (declare (string dotted)) (if errorp - (let ((ll (string-tokens (substitute #\Space #\. dotted)))) + (let ((ll (delimited-string-to-list dotted #\.))) (+ (ash (first ll) 24) (ash (second ll) 16) (ash (third ll) 8) (fourth ll))) (ignore-errors - (let ((ll (string-tokens (substitute #\Space #\. dotted)))) - (+ (ash (first ll) 24) (ash (second ll) 16) - (ash (third ll) 8) (fourth ll)))))) + (let ((ll (delimited-string-to-list dotted #\.))) + (+ (ash (first ll) 24) (ash (second ll) 16) + (ash (third ll) 8) (fourth ll)))))) #+sbcl (defun ipaddr-to-hostname (ipaddr &key ignore-cache)