mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-28 11:31:56 +01:00
Merge pull request #562 from hintjens/master
Removed tracing on router option setting
This commit is contained in:
@@ -82,8 +82,6 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_,
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// DEBUGGING PROBLEM WITH TRAVIS CI
|
|
||||||
printf ("E: invalid option value (int=%d value=%d)\n", is_int, value);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ZMQ_ROUTER_MANDATORY:
|
case ZMQ_ROUTER_MANDATORY:
|
||||||
@@ -91,8 +89,6 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_,
|
|||||||
mandatory = value;
|
mandatory = value;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// DEBUGGING PROBLEM WITH TRAVIS CI
|
|
||||||
printf ("E: invalid option value (int=%d value=%d)\n", is_int, value);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ZMQ_ROUTER_ANNOUNCE_SELF:
|
case ZMQ_ROUTER_ANNOUNCE_SELF:
|
||||||
@@ -105,8 +101,6 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_,
|
|||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// DEBUGGING PROBLEM WITH TRAVIS CI
|
|
||||||
printf ("E: invalid option (option=%d)\n", option_);
|
|
||||||
errno = EINVAL;
|
errno = EINVAL;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user