X-Git-Url: http://developer.intra2net.com/git/?a=blobdiff_plain;f=src%2Fsocket_handler.cpp;h=288ec66ed178712a767a91fcfac7b87b16193583;hb=56f3994d74dbc36d10bfa83b50b016bf269ac563;hp=b2bbcd145302ebbdd99485a1b815f963f088ab2e;hpb=9a5d7790b094439b9a6f16983e20493c0e43ee02;p=libt2n diff --git a/src/socket_handler.cpp b/src/socket_handler.cpp index b2bbcd1..288ec66 100644 --- a/src/socket_handler.cpp +++ b/src/socket_handler.cpp @@ -55,6 +55,31 @@ socket_handler::socket_handler(int _sock, socket_type_value _socket_type) { } +/** + * Destructor. Closes open socket + */ +socket_handler::~socket_handler() +{ + if (sock != -1) + { + shutdown(sock,SHUT_RDWR); + ::close(sock); + + sock = -1; + } +} + +/// close the underlying socket connection. Don't call directly, use the version provided +/// by the connection class you are using. +void socket_handler::close() +{ + LOGSTREAM(debug,"close connection"); + // graceful shutdown + shutdown(sock,SHUT_RDWR); + ::close(sock); + + sock = -1; +} /// set options like fast reuse and keepalive every socket should have void socket_handler::set_socket_options(int sock) @@ -90,16 +115,6 @@ void socket_handler::set_socket_options(int sock) EXCEPTIONSTREAM(error,t2n_communication_error,"fcntl error on socket: " << strerror(errno)); } -/// close the underlying socket connection. Don't call directly, use the version provided -/// by the connection class you are using. -void socket_handler::close() -{ - LOGSTREAM(debug,"close connection"); - // graceful shutdown - shutdown(sock,SHUT_RDWR); - ::close(sock); -} - /// is the underlying socket connection still open? bool socket_handler::is_closed() { @@ -267,7 +282,7 @@ bool socket_handler::fill_buffer(std::string& buffer) /// connection because it encapsulates the data. void socket_handler::socket_write(const std::string& data) { - int offset = 0; + unsigned int offset = 0; while (offset < data.size()) { unsigned int write_size=write_block_size;