-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.lisp
More file actions
37 lines (33 loc) · 798 Bytes
/
Copy pathpackage.lisp
File metadata and controls
37 lines (33 loc) · 798 Bytes
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
;;;; Copyright (c) Frank James 2017 <frank.a.james@gmail.com>
;;;; This code is licensed under the MIT license.
(defpackage #:winhttp
(:use #:cl #:cffi)
(:export #:http-request
#:with-http
#:with-connect
#:with-request
#:crack-url
#:http-open
#:close-handle
#:add-request-headers
#:http-connect
#:http-open-request
#:query-headers
#:query-status-code
#:read-data
#:receive-response
#:send-request
#:query-data-available
#:set-credentials
#:define-status-callback
#:set-status-callback
;; websocket
#:websocket-close
#:websocket-complete-upgrade
#:websocket-receive
#:websocket-send
#:websocket-shutdown
#:upgrade-to-websocket
#:with-websocket
#:websocket-query-close-status
))