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
a85c9f45
Commit
a85c9f45
authored
Feb 20, 2013
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MAXMSGSIZE broke when I cleaned up this code - fixed
parent
e628421e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
options.cpp
src/options.cpp
+2
-1
No files found.
src/options.cpp
View file @
a85c9f45
...
...
@@ -144,7 +144,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
case
ZMQ_RECONNECT_IVL_MAX
:
if
(
is_int
&&
value
>=
0
)
reconnect_ivl_max
=
value
;
else
else
valid
=
false
;
break
;
...
...
@@ -160,6 +160,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
maxmsgsize
=
*
((
int64_t
*
)
optval_
);
else
valid
=
false
;
break
;
case
ZMQ_MULTICAST_HOPS
:
if
(
is_int
&&
value
>
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