mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-17 08:34:00 +00:00
fixed trailing whitespace
This commit is contained in:
parent
a438e63498
commit
93a7a37893
@ -326,7 +326,7 @@ int zmq::pgm_socket_t::init (bool udp_encapsulation_, const char *network_)
|
|||||||
|
|
||||||
// Set IP level parameters.
|
// Set IP level parameters.
|
||||||
{
|
{
|
||||||
// Multicast loopback disabled by default
|
// Multicast loopback disabled by default
|
||||||
const int multicast_loop = 0;
|
const int multicast_loop = 0;
|
||||||
if (!pgm_setsockopt (sock, IPPROTO_PGM, PGM_MULTICAST_LOOP,
|
if (!pgm_setsockopt (sock, IPPROTO_PGM, PGM_MULTICAST_LOOP,
|
||||||
&multicast_loop, sizeof (multicast_loop)))
|
&multicast_loop, sizeof (multicast_loop)))
|
||||||
@ -338,10 +338,10 @@ int zmq::pgm_socket_t::init (bool udp_encapsulation_, const char *network_)
|
|||||||
goto err_abort;
|
goto err_abort;
|
||||||
|
|
||||||
// Expedited Forwarding PHB for network elements, no ECN.
|
// Expedited Forwarding PHB for network elements, no ECN.
|
||||||
const int dscp = 0x2e << 2;
|
const int dscp = 0x2e << 2;
|
||||||
if (AF_INET6 != sa_family && !pgm_setsockopt (sock,
|
if (AF_INET6 != sa_family && !pgm_setsockopt (sock,
|
||||||
IPPROTO_PGM, PGM_TOS, &dscp, sizeof (dscp)))
|
IPPROTO_PGM, PGM_TOS, &dscp, sizeof (dscp)))
|
||||||
goto err_abort;
|
goto err_abort;
|
||||||
|
|
||||||
const int nonblocking = 1;
|
const int nonblocking = 1;
|
||||||
if (!pgm_setsockopt (sock, IPPROTO_PGM, PGM_NOBLOCK,
|
if (!pgm_setsockopt (sock, IPPROTO_PGM, PGM_NOBLOCK,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user