Lines 52-58
Link Here
|
52 |
:element-type (if bin '(unsigned-byte 8) 'character))) |
52 |
:element-type (if bin '(unsigned-byte 8) 'character))) |
53 |
#+gcl (si::socket port :host host) |
53 |
#+gcl (si::socket port :host host) |
54 |
#+lispworks (comm:open-tcp-stream host port :direction :io :element-type |
54 |
#+lispworks (comm:open-tcp-stream host port :direction :io :element-type |
55 |
(if bin 'unsigned-byte 'base-char)) |
55 |
(if bin 'unsigned-byte 'character)) |
56 |
#-(or allegro clisp cmu scl sbcl gcl lispworks) |
56 |
#-(or allegro clisp cmu scl sbcl gcl lispworks) |
57 |
(error 'not-implemented :proc (list 'open-socket host port bin)))) |
57 |
(error 'not-implemented :proc (list 'open-socket host port bin)))) |
58 |
|
58 |
|