Example #1
0
void test_reconnect_ivl_tcp_ipv6 ()
{
    if (is_ipv6_available ()) {
        zmq_ctx_set (get_test_context (), ZMQ_IPV6, 1);
        test_reconnect_ivl_tcp (bind_loopback_ipv6);
    }
}
Example #2
0
void test_reconnect_ivl_tcp_ipv6 ()
{
    if (is_ipv6_available ()) {
        zmq_ctx_set (get_test_context (), ZMQ_IPV6, 1);
        test_reconnect_ivl_tcp ("tcp://[::1]:*");
    }
}
Example #3
0
void test_reconnect_ivl_tcp_ipv4 ()
{
    test_reconnect_ivl_tcp ("tcp://127.0.0.1:*");
}
Example #4
0
void test_reconnect_ivl_tcp_ipv4 ()
{
    test_reconnect_ivl_tcp (bind_loopback_ipv4);
}