Log:
[[[
Patch for drakma 0.6.0 to use usocket instead of trivial-sockets.

]]]
diff -r -u drakma-0.6.0/doc/index.html drakma-0.6.0-usocket/doc/index.html
--- drakma-0.6.0/doc/index.html	2007-02-08 15:35:00.000000000 +0100
+++ drakma-0.6.0-usocket/doc/index.html	2007-03-05 00:09:32.000000000 +0100
@@ -643,7 +643,7 @@
 href="http://www.cliki.net/Puri">Puri</a>, and <a href="http://weitz.de/chunga/">Chunga</a>.  If
 you're <em>not</em> using LispWorks, you'll also
 need <a
-href="http://www.cliki.net/trivial-sockets">trivial-sockets</a>
+href="http://www.cliki.net/usocket">usocket (0.3.2 or newer)</a>
 and (except for <a href="http://franz.com/products/allegrocl/">AllegroCL</a>) <a href="http://common-lisp.net/project/cl-plus-ssl/">CL+SSL</a>.
 Try to use the newest versions of all these libraries - use the CVS
 versions if in doubt.  Installation
Only in drakma-0.6.0-usocket/doc: index.html~
diff -r -u drakma-0.6.0/drakma.asd drakma-0.6.0-usocket/drakma.asd
--- drakma-0.6.0/drakma.asd	2007-02-08 15:34:58.000000000 +0100
+++ drakma-0.6.0-usocket/drakma.asd	2007-02-26 01:28:54.000000000 +0100
@@ -52,5 +52,5 @@
   :depends-on (:puri
                :cl-base64
                :chunga
-               #-:lispworks :trivial-sockets
+               #-:lispworks :usocket
                #-(or :lispworks :allegro) :cl+ssl))
diff -r -u drakma-0.6.0/request.lisp drakma-0.6.0-usocket/request.lisp
--- drakma-0.6.0/request.lisp	2007-02-08 15:34:58.000000000 +0100
+++ drakma-0.6.0-usocket/request.lisp	2007-02-26 01:26:20.000000000 +0100
@@ -392,8 +392,9 @@
                                                           :write-timeout write-timeout
                                                           :errorp t)
                                     #-:lispworks
-                                    (trivial-sockets:open-stream host port
-                                                                 :element-type 'octet))))
+                                    (usocket:socket-stream
+                                     (usocket:socket-connect host port
+                                                             :element-type 'octet)))))
             (when (and (or force-ssl
                            (eq (uri-scheme uri) :https))
                        ;; don't attach SSL to existing streams
