diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/helperfuncs.cpp | 14 | ||||
-rw-r--r-- | src/inspircd.cpp | 4 | ||||
-rw-r--r-- | src/userprocess.cpp | 5 | ||||
-rw-r--r-- | src/users.cpp | 4 |
4 files changed, 14 insertions, 13 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 0255de227..c6e1bcd10 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -139,7 +139,7 @@ void Write_NoFormat(int sock, const char *text) { Config->GetIOHook(fd_ref_table[sock]->port)->OnRawSocketWrite(sock,tb,bytes); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } @@ -177,7 +177,7 @@ void Write(int sock,char *text, ...) { Config->GetIOHook(fd_ref_table[sock]->port)->OnRawSocketWrite(sock,tb,bytes); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } @@ -206,7 +206,7 @@ void WriteServ_NoFormat(int sock, const char* text) { Config->GetIOHook(fd_ref_table[sock]->port)->OnRawSocketWrite(sock,tb,bytes); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } @@ -246,7 +246,7 @@ void WriteServ(int sock, char* text, ...) { Config->GetIOHook(fd_ref_table[sock]->port)->OnRawSocketWrite(sock,tb,bytes); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } @@ -275,7 +275,7 @@ void WriteFrom_NoFormat(int sock, userrec *user, const char* text) { Config->GetIOHook(fd_ref_table[sock]->port)->OnRawSocketWrite(sock,tb,bytes); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } @@ -315,7 +315,7 @@ void WriteFrom(int sock, userrec *user,char* text, ...) { Config->GetIOHook(fd_ref_table[sock]->port)->OnRawSocketWrite(sock,tb,bytes); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } @@ -1386,7 +1386,7 @@ void ShowMOTD(userrec *user) { Config->GetIOHook(user->port)->OnRawSocketWrite(user->fd,(char*)WholeMOTD.c_str(),WholeMOTD.length()); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } diff --git a/src/inspircd.cpp b/src/inspircd.cpp index de9f64781..0f4a9488e 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -524,7 +524,7 @@ bool InspIRCd::LoadModule(const char* filename) return false; } } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEFAULT,"Unable to load %s: ",modfile,modexcept.GetReason()); snprintf(MODERR,MAXBUF,"Factory function threw an exception: %s",modexcept.GetReason()); @@ -754,7 +754,7 @@ int InspIRCd::Run() { Config->GetIOHook(in_port)->OnRawSocketAccept(incomingSockfd, (char*)inet_ntoa(client.sin_addr), in_port); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } diff --git a/src/userprocess.cpp b/src/userprocess.cpp index 888d0572f..fae96721d 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -88,12 +88,13 @@ void ProcessUser(userrec* cu) if (Config->GetIOHook(cu->port)) { int result2 = 0; + int MOD_RESULT = 0; try { - int MOD_RESULT = Config->GetIOHook(cu->port)->OnRawSocketRead(cu->fd,data,65535,result2); + MOD_RESULT = Config->GetIOHook(cu->port)->OnRawSocketRead(cu->fd,data,65535,result2); log(DEBUG,"Data result returned by module: %d",MOD_RESULT); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } diff --git a/src/users.cpp b/src/users.cpp index f2aa4950f..c89286273 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -413,7 +413,7 @@ void kill_link(userrec *user,const char* r) { Config->GetIOHook(user->port)->OnRawSocketClose(user->fd); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } @@ -483,7 +483,7 @@ void kill_link_silent(userrec *user,const char* r) { Config->GetIOHook(user->port)->OnRawSocketClose(user->fd); } - catch (ModuleException modexcept) + catch (ModuleException& modexcept) { log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \ } |