From be2cf7a99fbf3c2fd1139608fe2b3cc5cdbd2daf Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 10 Jul 2006 21:30:30 +0000 Subject: Move logging further up in inspsocket so we get the right error for bind failure git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4309 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspsocket.cpp | 2 +- src/modules/m_http.cpp | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index 4264700f5..cc0368525 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -73,12 +73,12 @@ InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsi { if (!BindSocket(this->fd,this->client,this->server,aport,(char*)ahost.c_str())) { + log(DEBUG,"BindSocket() error %s",strerror(errno)); this->Close(); this->fd = -1; this->state = I_ERROR; this->OnError(I_ERR_BIND); this->ClosePending = true; - log(DEBUG,"BindSocket() error %s",strerror(errno)); return; } else diff --git a/src/modules/m_http.cpp b/src/modules/m_http.cpp index 59293e7a9..6cb95fa55 100644 --- a/src/modules/m_http.cpp +++ b/src/modules/m_http.cpp @@ -20,6 +20,8 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" +#include "inspsocket.h" +#include "helperfuncs.h" /* $ModDesc: Provides HTTP serving facilities to modules */ @@ -42,6 +44,7 @@ class HttpSocket : public InspSocket HttpSocket(std::string host, int port, bool listening, unsigned long maxtime, FileReader* index_page) : InspSocket(host, port, listening, maxtime), index(index_page) { + log(DEBUG,"HttpSocket constructor"); InternalState = HTTP_LISTEN; } @@ -57,6 +60,7 @@ class HttpSocket : public InspSocket HttpSocket* s = new HttpSocket(newsock, ip); Srv->AddSocket(s); } + return true; } virtual void OnClose() @@ -78,6 +82,7 @@ class HttpSocket : public InspSocket this->Write("

COWS.

"); } } + return true; } }; @@ -107,7 +112,7 @@ class ModuleHttp : public Module void CreateListener() { - http = new HttpSocket(this->host, this->port, true, 0, &index); + http = new HttpSocket(this->bindip, this->port, true, 0, &index); Srv->AddSocket(http); } -- cgit v1.2.3