mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-17 03:03:25 +02:00
Problem: UDP engine code not indented properly
Solution: Indent it.
This commit is contained in:
@@ -571,31 +571,31 @@ void zmq::session_base_t::start_connecting (bool wait_)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (addr->protocol == "udp") {
|
if (addr->protocol == "udp") {
|
||||||
zmq_assert (options.type == ZMQ_DISH || options.type == ZMQ_RADIO);
|
zmq_assert (options.type == ZMQ_DISH || options.type == ZMQ_RADIO);
|
||||||
|
|
||||||
udp_engine_t* engine = new (std::nothrow) udp_engine_t ();
|
udp_engine_t* engine = new (std::nothrow) udp_engine_t ();
|
||||||
alloc_assert (engine);
|
alloc_assert (engine);
|
||||||
|
|
||||||
bool recv = false;
|
bool recv = false;
|
||||||
bool send = false;
|
bool send = false;
|
||||||
|
|
||||||
if (options.type == ZMQ_RADIO) {
|
if (options.type == ZMQ_RADIO) {
|
||||||
send = true;
|
send = true;
|
||||||
recv = false;
|
recv = false;
|
||||||
|
}
|
||||||
|
else if (options.type == ZMQ_DISH) {
|
||||||
|
send = false;
|
||||||
|
recv = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int rc = engine->init (addr, send, recv);
|
||||||
|
errno_assert (rc == 0);
|
||||||
|
|
||||||
|
send_attach (this, engine);
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
else if (options.type == ZMQ_DISH) {
|
|
||||||
send = false;
|
|
||||||
recv = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
int rc = engine->init (addr, send, recv);
|
|
||||||
errno_assert (rc == 0);
|
|
||||||
|
|
||||||
send_attach (this, engine);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef ZMQ_HAVE_OPENPGM
|
#ifdef ZMQ_HAVE_OPENPGM
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user