X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Finspsocket.cpp;h=7ddd774954f913e13cb196e861ba2f44814fe559;hb=4e58282058fe9d57f0ef1d557e88ffdbdbf01166;hp=fbeb60122b2cb262245fb5b966ae6c8e73b4317f;hpb=612384b3d46d06eea6fd71ee6dc60471d0f9e3d1;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index fbeb60122..7ddd77495 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -114,15 +114,7 @@ void StreamSocket::Close() DoWrite(); if (GetIOHook()) { - try - { - GetIOHook()->OnStreamSocketClose(this); - } - catch (CoreException& modexcept) - { - ServerInstance->Logs->Log("SOCKET", LOG_DEFAULT, "%s threw an exception: %s", - modexcept.GetSource().c_str(), modexcept.GetReason().c_str()); - } + GetIOHook()->OnStreamSocketClose(this); delete iohook; DelIOHook(); } @@ -151,17 +143,7 @@ void StreamSocket::DoRead() { if (GetIOHook()) { - int rv = -1; - try - { - rv = GetIOHook()->OnStreamSocketRead(this, recvq); - } - catch (CoreException& modexcept) - { - ServerInstance->Logs->Log("SOCKET", LOG_DEFAULT, "%s threw an exception: %s", - modexcept.GetSource().c_str(), modexcept.GetReason().c_str()); - return; - } + int rv = GetIOHook()->OnStreamSocketRead(this, recvq); if (rv > 0) OnDataReady(); if (rv < 0) @@ -219,8 +201,6 @@ void StreamSocket::DoWrite() if (GetIOHook()) { - int rv = -1; - try { while (error.empty() && !sendq.empty()) { @@ -246,7 +226,7 @@ void StreamSocket::DoWrite() int itemlen = front.length(); { - rv = GetIOHook()->OnStreamSocketWrite(this, front); + int rv = GetIOHook()->OnStreamSocketWrite(this, front); if (rv > 0) { // consumed the entire string, and is ready for more @@ -270,11 +250,6 @@ void StreamSocket::DoWrite() } } } - catch (CoreException& modexcept) - { - ServerInstance->Logs->Log("SOCKET", LOG_DEBUG, "%s threw an exception: %s", - modexcept.GetSource().c_str(), modexcept.GetReason().c_str()); - } } else {