Fixed typo in documentation about zmq_proxy_steerable()

This commit is contained in:
Mathias Hablützel 2013-11-15 15:31:09 +01:00
parent a0bde50887
commit 3535a1d7ea
No known key found for this signature in database
GPG Key ID: A91539360A5E6CB3

View File

@ -62,7 +62,7 @@ assert (zmq_connect (control, "tcp://*:5557") == 0);
assert (zmq_setsockopt (control, ZMQ_SUBSCRIBE, "", 0));
// Start the queue proxy, which runs until ETERM or "TERMINATE" received on
the control socket
zmq_proxy (frontend, backend, NULL, control);
zmq_proxy_steerable (frontend, backend, NULL, control);
----
.Set up a controller in another node, process or whatever
----