[usocket-cvs] r76 - usocket/trunk/backend
ehuelsmann at common-lisp.net
ehuelsmann at common-lisp.net
Sat Feb 11 22:39:07 UTC 2006
Author: ehuelsmann
Date: Sat Feb 11 16:39:07 2006
New Revision: 76
Modified:
usocket/trunk/backend/openmcl.lisp
Log:
Add package prefixes.
Modified: usocket/trunk/backend/openmcl.lisp
==============================================================================
--- usocket/trunk/backend/openmcl.lisp (original)
+++ usocket/trunk/backend/openmcl.lisp Sat Feb 11 16:39:07 2006
@@ -26,7 +26,7 @@
(defun handle-condition (condition &optional socket)
(typecase condition
(socket-error
- (let ((usock-err (cdr (assoc (socket-error-identifier condition)
+ (let ((usock-err (cdr (assoc (socket:socket-error-identifier condition)
+openmcl-error-map+))))
(if usock-err
(error usock-err :socket socket)
@@ -38,10 +38,10 @@
(let ((sock))
(with-mapped-conditions (sock)
(setf sock
- (make-socket :remote-host (host-to-hostname host)
- :remote-port port))
- (socket-connect sock))))
+ (socket:make-socket :remote-host (host-to-hostname host)
+ :remote-port port))
+ (socket:socket-connect sock))))
(defmethod socket-close ((usocket usocket))
(with-mapped-conditions (usocket)
- (close (socket usocket))))
+ (socket:close (socket usocket))))
More information about the usocket-cvs
mailing list