Next: Accepting Connections, Previous: Domain Name Services (DNS), Up: Networking Support [Contents][Index]
In this section, functions for creating sockets bound to an interface are documented.
&optional
kind &key :reuse-address
:backlog
:host
¶Creates a socket and binds it to a port, prepared to receive
connections of kind kind (which defaults to :stream
),
queuing up to backlog of them. If :reuse-address
T
is used, the option SO_REUSEADDR
is used in the call to bind.
If no value is given for :host
, it will try to bind to the
default IP address of the machine where the Lisp process is running.
&optional
kind &key :backlog
¶Creates a socket and binds it to the file name given by path,
prepared to receive connections of kind kind (which defaults
to :stream
), queuing up to backlog of them.