Hash :
9604b515
Author :
Thomas de Grivel
Date :
2017-08-01T21:53:34
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
(in-package :common-lisp)
(defpackage :http-method
(:export
#:delete
#:get
#:head
#:post
#:put
#:connect
#:options
#:trace
#:patch))
(defpackage :thot
(:use
:babel-stream
:bordeaux-threads
:cffi
:cffi-errno
:cl-debug
:cl-stream
:common-lisp
:dirent
:fd-stream
:html-entities)
#.(cl-stream:shadowing-import-from)
(:export
#:request
#:*request*
#:request-socket
#:request-method
#:request-url
#:request-http-version
#:request-headers
#:request-header
#:reply
#:*reply*
#:reply-status
#:reply-headers
#:reply-header
#:reply-headers-sent
#:reply-content-length
#:status
#:header
#:end-headers
#:content
#:start
#:start-threaded))