[nio-cvs] r21 - branches/home/psmith/restructure/src/protocol/http

psmith at common-lisp.net psmith at common-lisp.net
Thu Dec 28 01:34:39 UTC 2006


Author: psmith
Date: Wed Dec 27 20:34:39 2006
New Revision: 21

Modified:
   branches/home/psmith/restructure/src/protocol/http/http-state-machine.lisp
   branches/home/psmith/restructure/src/protocol/http/nio-http-package.lisp
   branches/home/psmith/restructure/src/protocol/http/nio-http.asd
Log:
Done nio-http

Modified: branches/home/psmith/restructure/src/protocol/http/http-state-machine.lisp
==============================================================================
--- branches/home/psmith/restructure/src/protocol/http/http-state-machine.lisp	(original)
+++ branches/home/psmith/restructure/src/protocol/http/http-state-machine.lisp	Wed Dec 27 20:34:39 2006
@@ -29,7 +29,7 @@
 (declaim (optimize (debug 3) (speed 3) (space 0)))
 
 ;; A SM that speaks HTTP
-(defclass http-state-machine (state-machine)())
+(defclass http-state-machine (async-fd)())
 
 (defmethod process-read((sm http-state-machine))
   (with-slots (foreign-read-buffer foreign-write-buffer) sm 

Modified: branches/home/psmith/restructure/src/protocol/http/nio-http-package.lisp
==============================================================================
--- branches/home/psmith/restructure/src/protocol/http/nio-http-package.lisp	(original)
+++ branches/home/psmith/restructure/src/protocol/http/nio-http-package.lisp	Wed Dec 27 20:34:39 2006
@@ -24,7 +24,7 @@
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 |#
-(defpackage :nio-http (:use :cl :packets :nio)
+(defpackage :nio-http (:use :cl :nio)
 	    
 	    (:export
 

Modified: branches/home/psmith/restructure/src/protocol/http/nio-http.asd
==============================================================================
--- branches/home/psmith/restructure/src/protocol/http/nio-http.asd	(original)
+++ branches/home/psmith/restructure/src/protocol/http/nio-http.asd	Wed Dec 27 20:34:39 2006
@@ -8,4 +8,4 @@
 		 (:file "http-response" :depends-on ("nio-http-package"))
 		 )
 
-    :depends-on (:packets))
\ No newline at end of file
+    :depends-on (:nio))
\ No newline at end of file



More information about the Nio-cvs mailing list