X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fsocket_handler.hxx;h=b91a505df7615052c070728af8ece0f12fef7077;hp=82ccdad368a6e13edd53c606ea6c2955688f5301;hb=238ad35f4e3b6516d4ba7611b540a0edeea71427;hpb=45a2ebc9695c4d7be6548b7e0f800d117ae56a0b diff --git a/src/socket_handler.hxx b/src/socket_handler.hxx index 82ccdad..b91a505 100644 --- a/src/socket_handler.hxx +++ b/src/socket_handler.hxx @@ -32,18 +32,23 @@ namespace libt2n class socket_handler { private: - static const unsigned int recv_buffer_size=2048; - static const unsigned int write_block_size=4096; + static const unsigned int default_recv_buffer_size=2048; + static const unsigned int default_write_block_size=4096; + static const long long default_write_timeout=30000000; socket_type_value socket_type; - bool data_waiting(long long usec_timeout,long long *timeout_remaining=NULL); + bool data_waiting(long long usec_timeout,long long *usec_timeout_remaining=NULL); + void wait_ready_to_write(int socket, long long write_block_timeout); protected: int sock; + unsigned int recv_buffer_size; + unsigned int write_block_size; + long long write_timeout; - socket_handler(int _sock, socket_type_value _socket_type) - { sock=_sock; socket_type=_socket_type; } + socket_handler(int _sock, socket_type_value _socket_type); + // TODO: No destructor? void set_socket_options(int sock); @@ -54,15 +59,23 @@ class socket_handler virtual void close(); - bool fill_buffer(std::string& buffer, long long usec_timeout, long long*timeout_remaining=NULL); + bool fill_buffer(std::string& buffer, long long usec_timeout, long long* usec_timeout_remaining=NULL); bool fill_buffer(std::string& buffer); public: - /// is this a tcp or udp socket connection + /// is this a tcp or unix socket connection socket_type_value get_type() { return socket_type; } bool is_closed(); + + void set_recv_buffer_size(unsigned int new_recv_buffer_size); + void set_write_block_size(unsigned int new_write_block_size); + void set_write_timeout(long long new_write_timeout); + + unsigned int get_recv_buffer_size() const { return recv_buffer_size; } + unsigned int get_write_block_size() const { return write_block_size; } + long long get_write_timeout() const { return write_timeout; } }; }