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
35dd85a1
Commit
35dd85a1
authored
Nov 09, 2014
by
Min RK
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use more conservative 30 second default timeout for LINGER
Regression in #1248 can cause lost messages at exit.
parent
ed4f3426
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
zmq_setsockopt.txt
doc/zmq_setsockopt.txt
+1
-1
options.cpp
src/options.cpp
+1
-1
No files found.
doc/zmq_setsockopt.txt
View file @
35dd85a1
...
...
@@ -323,7 +323,7 @@ following outlines the different behaviours:
[horizontal]
Option value type:: int
Option value unit:: milliseconds
Default value::
2000 (two
seconds)
Default value::
30000 (thirty
seconds)
Applicable socket types:: all
...
...
src/options.cpp
View file @
35dd85a1
...
...
@@ -35,7 +35,7 @@ zmq::options_t::options_t () :
rcvbuf
(
0
),
tos
(
0
),
type
(
-
1
),
linger
(
2
000
),
linger
(
30
000
),
reconnect_ivl
(
100
),
reconnect_ivl_max
(
0
),
backlog
(
100
),
...
...
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