X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSocketHandle.cc;h=3878a362c77c57d833ad09716d45ce5022a9113e;hb=171b7d9c23896219fc63a6c4a75fc86dfd4bb042;hp=8365bf7e134798a2aa8ffbce18e93c92bb061d3b;hpb=31d85cd6b8e03c5ecc924ca8892906be1bab702f;p=senf.git diff --git a/Socket/SocketHandle.cc b/Socket/SocketHandle.cc index 8365bf7..3878a36 100644 --- a/Socket/SocketHandle.cc +++ b/Socket/SocketHandle.cc @@ -30,7 +30,7 @@ // Custom includes #include #include -#include "Utils/TypeInfo.hh" +#include "../Utils/TypeInfo.hh" //#include "SocketHandle.mpp" #define prefix_ @@ -38,24 +38,12 @@ prefix_ void senf::SocketBody::v_close() { - if (::shutdown(fd(),SHUT_RDWR) < 0) - throw SystemException(errno); - if (::close(fd()) < 0) - throw SystemException(errno); + protocol().close(); } prefix_ void senf::SocketBody::v_terminate() { - struct linger ling; - ling.l_onoff = 0; - ling.l_linger = 0; - - // We purposely IGNORE any errors: this method is used to try and - // terminate the connection ignoring any possible problems - - ::setsockopt(fd(),SOL_SOCKET,SO_LINGER,&ling,sizeof(ling)); - ::shutdown(fd(),SHUT_RDWR); - ::close(fd()); + protocol().terminate(); } prefix_ bool senf::SocketBody::v_eof() @@ -116,4 +104,5 @@ prefix_ std::ostream & senf::operator<<(std::ostream & os, SocketHandle // indent-tabs-mode: nil // ispell-local-dictionary: "american" // compile-command: "scons -u test" +// comment-column: 40 // End: