diff options
| author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-11-24 11:23:10 +0100 | 
|---|---|---|
| committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-11-24 11:23:10 +0100 | 
| commit | c98fd6bc3f2a49d7cb0b820a07354168c98f60b7 (patch) | |
| tree | 894f3dc0e6221284c6608a8819488f4ffede1085 /bindings/ruby | |
| parent | 5cd98bc575517ea72c435770a5313711484f7d34 (diff) | |
ZMQII-25: Implement streamed request/reply
Diffstat (limited to 'bindings/ruby')
| -rw-r--r-- | bindings/ruby/rbzmq.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/bindings/ruby/rbzmq.cpp b/bindings/ruby/rbzmq.cpp index 6112972..2a26ce1 100644 --- a/bindings/ruby/rbzmq.cpp +++ b/bindings/ruby/rbzmq.cpp @@ -275,6 +275,8 @@ extern "C" void Init_librbzmq ()      rb_define_global_const ("PUB", INT2NUM (ZMQ_PUB));      rb_define_global_const ("REQ", INT2NUM (ZMQ_REQ));      rb_define_global_const ("REP", INT2NUM (ZMQ_REP)); +    rb_define_global_const ("UPSTREAM", INT2NUM (ZMQ_UPSTREAM)); +    rb_define_global_const ("DOWNSTREAM", INT2NUM (ZMQ_DOWNSTREAM));      rb_define_global_const ("POLL", INT2NUM (ZMQ_POLL));  } | 
