[usocket-cvs] r491 - usocket/trunk
Hans Hübner
hhubner at common-lisp.net
Thu Feb 12 17:14:37 UTC 2009
Author: hhubner
Date: Thu Feb 12 17:14:36 2009
New Revision: 491
Log:
Avoid calling dotted-quad-to* functions for strings that can't
possibly parse as an IP address. This helps when debugging using
*BREAK-ON-SIGNALS*.
Modified:
usocket/trunk/usocket.lisp
Modified: usocket/trunk/usocket.lisp
==============================================================================
--- usocket/trunk/usocket.lisp (original)
+++ usocket/trunk/usocket.lisp Thu Feb 12 17:14:36 2009
@@ -351,6 +351,13 @@
(push (parse-integer element) new-list))
new-list))
+(defun ip-address-string-p (string)
+ "Return a true value if the given string could be an IP address."
+ (every (lambda (char)
+ (or (digit-char-p char)
+ (eql char #\.)))
+ string))
+
(defun hbo-to-dotted-quad (integer)
"Host-byte-order integer to dotted-quad string conversion utility."
(let ((first (ldb (byte 8 24) integer))
@@ -438,7 +445,7 @@
"Translate a host specification (vector quad, dotted quad or domain name)
to a vector quad."
(etypecase host
- (string (let* ((ip (ignore-errors
+ (string (let* ((ip (when (ip-address-string-p host)
(dotted-quad-to-vector-quad host))))
(if (and ip (= 4 (length ip)))
;; valid IP dotted quad?
@@ -451,7 +458,7 @@
(defun host-to-hbo (host)
(etypecase host
- (string (let ((ip (ignore-errors
+ (string (let ((ip (when (ip-address-string-p host)
(dotted-quad-to-vector-quad host))))
(if (and ip (= 4 (length ip)))
(host-byte-order ip)
More information about the usocket-cvs
mailing list