diff options
Diffstat (limited to 'lib/HttpServ.cc')
-rw-r--r-- | lib/HttpServ.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc index e24a49d..bc836c4 100644 --- a/lib/HttpServ.cc +++ b/lib/HttpServ.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: HttpServ.cc,v 1.50 2007-06-13 07:01:28 pixel Exp $ */ +/* $Id: HttpServ.cc,v 1.51 2007-06-17 15:21:50 pixel Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -227,6 +227,10 @@ int ProcessRequest::Do() throw(GeneralException) { request.uri = Uri; request.login = login; request.password = password; + request.lip = s.GetAddr(); + request.dip = s.GetDistantAddr(); + request.lport = s.GetPort(); + request.dport = s.GetDistantPort(); d->Do(request, &response); a = response.BuildResponse(&s); } else { |