summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-12-18 15:46:21 +0100
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-12-18 15:46:21 +0100
commitbad224251e97205abaf987e8e998bc14af32223c (patch)
treeca7642afe11b38fe92246b41ca4151a3c2476f15 /man
parentd50c7daf9eafe36ca2df7210ff2e82487e85f842 (diff)
minor errors in zmq_cpp man page fixed
Diffstat (limited to 'man')
-rw-r--r--man/man7/zmq_cpp.712
1 files changed, 6 insertions, 6 deletions
diff --git a/man/man7/zmq_cpp.7 b/man/man7/zmq_cpp.7
index 128669d..bcadab9 100644
--- a/man/man7/zmq_cpp.7
+++ b/man/man7/zmq_cpp.7
@@ -41,10 +41,10 @@ This class encapsulates
.IR zmq_msg_t
structure and all the C functions that deal with 0MQ messages.
Constructors of the class invoke corresponding initialisation functions (
-.BR zmq_init(3) ,
-.BR zmq_init_size(3)
+.BR zmq_msg_init(3) ,
+.BR zmq_msg_init_size(3)
and
-.BR zmq_init_data(3) ,
+.BR zmq_msg_init_data(3) ,
while destructor invokes
.BR zmq_msg_close(3)
function.
@@ -61,10 +61,10 @@ C++ provides an additional function not avialable with C API.
is equivalent to calling
.BR zmq_close(3)
followed by
-.BR zmq_init(3) ,
-.BR zmq_init_size (3)
+.BR zmq_msg_init(3) ,
+.BR zmq_msg_init_size (3)
or
-.BR zmq_init_data(3) .
+.BR zmq_msg_init_data(3) .
It provides a way to reuse existing
.IR zmq::message_t
instances to store different message content.