[hunchentoot-devel] When hunchetoot is listening on multiple addresses how can I find on which address was a specific request received?

Vassilis Radis radisb at gmail.com
Fri Jan 18 13:45:00 UTC 2013


Well, (acceptor-address *acceptor*) returns nil if it has been started with
no :address initarg. The acceptor-address returns the :address argument at
the initialization of the acceptor which designates on which ip or hostname
the server listens (if :address is not supplied server listens on all the
interfaces), not on which ip address a request came through.

Example:

I have 2 interfaces on my machine: eth0 (192.168.1.1) and eth1 (8.8.8.8) .
If I start an acceptor with no address supplied, hunchentoot receives
requests on both of these interfaces and (acceptor-address *acceptor*)
returns nil which implies that it listens on 0.0.0.0 .But each request has
to come through one of them. How can I find on which one a request came
through?




On Fri, Jan 18, 2013 at 3:35 PM, Stas Boukarev <stassats at gmail.com> wrote:

> Vassilis Radis <radisb at gmail.com> writes:
>
> > But this returns the port , not the IP on which the request was received.
> > Am I missing something?
> (acceptor-address *acceptor*)
>
> --
> With best regards, Stas.
>
> _______________________________________________
> tbnl-devel site list
> tbnl-devel at common-lisp.net
> http://common-lisp.net/mailman/listinfo/tbnl-devel
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/tbnl-devel/attachments/20130118/ccaa0b5b/attachment.html>


More information about the Tbnl-devel mailing list