diff options
author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-12-01 18:50:54 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-12-01 18:50:54 +0100 |
commit | 9bd309bda6522dfdd514dd0c4edae04322c83ed1 (patch) | |
tree | ffcb1f097b219f64cffb079e1e36a54d2f624e8b /src/object.hpp | |
parent | c04583ff6ca3c27de5628a61b6b6ce59fd13c9d9 (diff) |
annoying optimisation in 'bind' command removed
Diffstat (limited to 'src/object.hpp')
-rw-r--r-- | src/object.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object.hpp b/src/object.hpp index 4fd0a8e..9d4cd9a 100644 --- a/src/object.hpp +++ b/src/object.hpp @@ -68,8 +68,8 @@ namespace zmq class owned_t *object_); void send_attach (class session_t *destination_, struct i_engine *engine_); - void send_bind (object_t *destination_, class reader_t *in_pipe_, - class writer_t *out_pipe_, bool adjust_seqnum_); + void send_bind (class socket_base_t *destination_, + class reader_t *in_pipe_, class writer_t *out_pipe_); void send_revive (class object_t *destination_); void send_pipe_term (class writer_t *destination_); void send_pipe_term_ack (class reader_t *destination_); @@ -85,7 +85,7 @@ namespace zmq virtual void process_own (class owned_t *object_); virtual void process_attach (struct i_engine *engine_); virtual void process_bind (class reader_t *in_pipe_, - class writer_t *out_pipe_, bool adjust_seqnum_); + class writer_t *out_pipe_); virtual void process_revive (); virtual void process_pipe_term (); virtual void process_pipe_term_ack (); |