Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
5a0d2129
Commit
5a0d2129
authored
Dec 23, 2013
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #798 from pijyoi/master
doc bugfix: ZMQ_MSGMORE should be ZMQ_SNDMORE
parents
b5aa2b0f
5fa3f0a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
zmq_setsockopt.txt
doc/zmq_setsockopt.txt
+1
-1
zmq_socket.txt
doc/zmq_socket.txt
+2
-2
No files found.
doc/zmq_setsockopt.txt
View file @
5a0d2129
...
...
@@ -446,7 +446,7 @@ ZMQ_ROUTER_RAW: switch ROUTER socket to raw mode
Sets the raw mode on the ROUTER, when set to 1. When the ROUTER socket is in
raw mode, and when using the tcp:// transport, it will read and write TCP data
without 0MQ framing. This lets 0MQ applications talk to non-0MQ applications.
When using raw mode, you cannot set explicit identities, and the ZMQ_
MSG
MORE
When using raw mode, you cannot set explicit identities, and the ZMQ_
SND
MORE
flag is ignored when sending data messages. In raw mode you can close a specific
connection by sending it a zero-length message (following the identity frame).
...
...
doc/zmq_socket.txt
View file @
5a0d2129
...
...
@@ -354,10 +354,10 @@ socket identity using the ZMQ_IDENTITY zmq_getsockopt call.
To close a specific client connection, as a server, send the identity frame
followed by a zero-length message (see EXAMPLE section).
The ZMQ_
MSG
MORE flag is ignored on data frames. You must send one identity frame
The ZMQ_
SND
MORE flag is ignored on data frames. You must send one identity frame
followed by one data frame.
Also, please note that omitting the ZMQ_
MSG
MORE flag will prevent sending further
Also, please note that omitting the ZMQ_
SND
MORE flag will prevent sending further
data (from any client) on the same socket.
[horizontal]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment