Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zach Beane
zacl
Commits
7ea707d9
Commit
7ea707d9
authored
Nov 18, 2016
by
Zach Beane
Browse files
Add stubs for MAKE-SSL-SERVER-STREAM and MAKE-SSL-CLIENT-STREAM.
parent
8154dbaf
Changes
2
Hide whitespace changes
Inline
Side-by-side
package-socket.lisp
View file @
7ea707d9
...
...
@@ -137,3 +137,11 @@
(
defun
socket:lookup-hostname
(
name
)
(
lookup-hostname
name
))
(
defun
socket::make-ssl-server-stream
(
&rest
args
)
(
declare
(
ignore
args
))
(
error
"Not implemented -- MAKE-SSL-SERVER-STREAM"
))
(
defun
socket::make-ssl-client-stream
(
&rest
args
)
(
declare
(
ignore
args
))
(
error
"Not implemented -- MAKE-SSL-CLIENT-STREAM"
))
package.lisp
View file @
7ea707d9
...
...
@@ -234,6 +234,8 @@
(
defpackage
#:socket
(
:use
)
(
:intern
#:make-ssl-server-stream
#:make-ssl-client-stream
)
(
:export
#:make-socket
#:socket-error
#:accept-connection
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment