Commit e0ec6a9b authored by Luca Boccassi's avatar Luca Boccassi

Problem: formatting errors introduced by PR #3237

Solution: fix them
parent d8f3b283
...@@ -206,8 +206,8 @@ void zmq::udp_engine_t::plug (io_thread_t *io_thread_, session_base_t *session_) ...@@ -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 (); bool multicast = udp_addr->is_mcast ();
if (multicast) { if (multicast) {
// Multicast addresses should be allowed to bind to more than // Multicast addresses should be allowed to bind to more than
// one port as all ports should receive the message // one port as all ports should receive the message
#ifdef SO_REUSEPORT #ifdef SO_REUSEPORT
rc = setsockopt (_fd, SOL_SOCKET, SO_REUSEPORT, rc = setsockopt (_fd, SOL_SOCKET, SO_REUSEPORT,
reinterpret_cast<char *> (&on), sizeof (on)); 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_) ...@@ -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 // In multicast we should bind ANY and use the mreq struct to
// specify the interface // specify the interface
any.set_port (bind_addr->port ()); any.set_port (bind_addr->port ());
real_bind_addr = &any; real_bind_addr = &any;
} else { } else {
real_bind_addr = bind_addr; real_bind_addr = bind_addr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment