ZMQII-27: Allow setting SNDBUF and RCVBUF size from 0MQ API (POSIX)

This commit is contained in:
Martin Sustrik
2009-12-10 09:47:24 +01:00
parent 72dacc3570
commit 2e39f892c3
14 changed files with 87 additions and 9 deletions

View File

@@ -36,7 +36,8 @@ namespace zmq
{
public:
zmq_engine_t (class io_thread_t *parent_, fd_t fd_);
zmq_engine_t (class io_thread_t *parent_, fd_t fd_,
const options_t &options_);
~zmq_engine_t ();
// i_engine interface implementation.
@@ -71,6 +72,8 @@ namespace zmq
zmq_encoder_t encoder;
zmq_decoder_t decoder;
options_t options;
zmq_engine_t (const zmq_engine_t&);
void operator = (const zmq_engine_t&);
};