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
e0ec6a9b
Commit
e0ec6a9b
authored
Aug 31, 2018
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: formatting errors introduced by PR #3237
Solution: fix them
parent
d8f3b283
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
udp_engine.cpp
src/udp_engine.cpp
+3
-2
No files found.
src/udp_engine.cpp
View file @
e0ec6a9b
...
...
@@ -206,8 +206,8 @@ void zmq::udp_engine_t::plug (io_thread_t *io_thread_, session_base_t *session_)
bool
multicast
=
udp_addr
->
is_mcast
();
if
(
multicast
)
{
// Multicast addresses should be allowed to bind to more than
// one port as all ports should receive the message
// Multicast addresses should be allowed to bind to more than
// one port as all ports should receive the message
#ifdef SO_REUSEPORT
rc
=
setsockopt
(
_fd
,
SOL_SOCKET
,
SO_REUSEPORT
,
reinterpret_cast
<
char
*>
(
&
on
),
sizeof
(
on
));
...
...
@@ -221,6 +221,7 @@ void zmq::udp_engine_t::plug (io_thread_t *io_thread_, session_base_t *session_)
// In multicast we should bind ANY and use the mreq struct to
// specify the interface
any
.
set_port
(
bind_addr
->
port
());
real_bind_addr
=
&
any
;
}
else
{
real_bind_addr
=
bind_addr
;
...
...
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