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
dce4d06b
Commit
dce4d06b
authored
Jan 03, 2017
by
Luca Boccassi
Committed by
GitHub
Jan 03, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2288 from paddor/master
fix typos
parents
ec2ba8a9
1b3df75b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
zmq_gssapi.txt
doc/zmq_gssapi.txt
+2
-2
zmq_setsockopt.txt
doc/zmq_setsockopt.txt
+1
-1
socket_base.cpp
src/socket_base.cpp
+1
-1
No files found.
doc/zmq_gssapi.txt
View file @
dce4d06b
...
...
@@ -29,9 +29,9 @@ for whom GSSAPI credentials should be acquired.
To become a GSSAPI server, the application additionally sets the
ZMQ_GSSAPI_SERVER option on the socket.
To become a GSSAPI client, the application
sets
additionally sets the
To become a GSSAPI client, the application additionally sets the
ZMQ_GSSAPI_SERVICE_PRINCIPAL option to the name of the principal of the server
to which it intends to connect.
to which it intends to connect.
OPTIONAL ENCRYPTION
...
...
doc/zmq_setsockopt.txt
View file @
dce4d06b
...
...
@@ -203,7 +203,7 @@ Applicable socket types:: all, when using TCP transport
ZMQ_GSSAPI_PLAINTEXT: Disable GSSAPI encryption
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines whether communications on the socket will encrypted, see
Defines whether communications on the socket will
be
encrypted, see
linkzmq:zmq_gssapi[7]. A value of '1' means that communications will be
plaintext. A value of '0' means communications will be encrypted.
...
...
src/socket_base.cpp
View file @
dce4d06b
...
...
@@ -1205,7 +1205,7 @@ int zmq::socket_base_t::recv (msg_t *msg_, int flags_)
// If the message cannot be fetched immediately, there are two scenarios.
// For non-blocking recv, commands are processed in case there's an
// activate_reader command already waiting in
t
a command pipe.
// activate_reader command already waiting in a command pipe.
// If it's not, return EAGAIN.
if
(
flags_
&
ZMQ_DONTWAIT
||
options
.
rcvtimeo
==
0
)
{
if
(
unlikely
(
process_commands
(
0
,
false
)
!=
0
))
{
...
...
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