diff options
author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-12-10 09:47:24 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-12-10 09:47:24 +0100 |
commit | 2e39f892c353851fe90261db0a0875abab50539f (patch) | |
tree | ef7a2eb32a84418f21180ec79a39f4090f784d5b /bindings/python | |
parent | 72dacc35702a14ab0bb5a2650dffbb3bbda63175 (diff) |
ZMQII-27: Allow setting SNDBUF and RCVBUF size from 0MQ API (POSIX)
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/pyzmq.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bindings/python/pyzmq.cpp b/bindings/python/pyzmq.cpp index 26ca7ac..f171eab 100644 --- a/bindings/python/pyzmq.cpp +++ b/bindings/python/pyzmq.cpp @@ -534,6 +534,12 @@ PyMODINIT_FUNC initlibpyzmq () t = PyInt_FromLong (ZMQ_MCAST_LOOP); PyDict_SetItemString (dict, "MCAST_LOOP", t); Py_DECREF (t); + t = PyInt_FromLong (ZMQ_SNDBUF); + PyDict_SetItemString (dict, "SNDBUF", t); + Py_DECREF (t); + t = PyInt_FromLong (ZMQ_RCVBUF); + PyDict_SetItemString (dict, "RCVBUF", t); + Py_DECREF (t); t = PyInt_FromLong (ZMQ_POLL); PyDict_SetItemString (dict, "POLL", t); Py_DECREF (t); |