summaryrefslogtreecommitdiff
path: root/man/man3/zmq_socket.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/man3/zmq_socket.3')
-rw-r--r--man/man3/zmq_socket.38
1 files changed, 4 insertions, 4 deletions
diff --git a/man/man3/zmq_socket.3 b/man/man3/zmq_socket.3
index 9eb77c8..3574421 100644
--- a/man/man3/zmq_socket.3
+++ b/man/man3/zmq_socket.3
@@ -21,7 +21,7 @@ single bind. There's no message routing or message filtering involved.
Compatible peer sockets: ZMQ_P2P.
.IP "\fBZMQ_PUB\fP"
-Socket to distribute data. Recv fuction is not implemented for this socket
+Socket to distribute data. Recv function is not implemented for this socket
type. Messages are distributed in fanout fashion to all the peers.
Compatible peer sockets: ZMQ_SUB.
@@ -50,7 +50,7 @@ Compatible peer sockets: ZMQ_REQ, ZMQ_XREQ.
.IP "\fBZMQ_XREQ\fP"
Special socket type to be used in request/reply middleboxes such as
.BR zmq_queue(7) .
-Requests forwarded using this socket type should be tagged by a proper postix
+Requests forwarded using this socket type should be tagged by a proper prefix
identifying the original requester. Replies received by this socket are tagged
with a proper postfix that can be use to route the reply back to the original
requester.
@@ -60,9 +60,9 @@ Compatible peer sockets: ZMQ_REP, ZMQ_XREP.
.IP "\fBZMQ_XREP\fP"
Special socket type to be used in request/reply middleboxes such as
.BR zmq_queue(7) .
-Requests received using this socket are already properly tagged with postfix
+Requests received using this socket are already properly tagged with prefix
identifying the original requester. When sending a reply via XREP socket the
-message should be tagged with a postfix from a corresponding request.
+message should be tagged with a prefix from a corresponding request.
Compatible peer sockets: ZMQ_REQ, ZMQ_XREQ.