Example #1
0
///
//  Get socket option `tcp_maxrt`.
//  Available from libzmq 4.2.0.  
int QZsock::tcpMaxrt ()
{
    int rv = zsock_tcp_maxrt (self);
    return rv;
}
Example #2
0
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsock__1_1tcpMaxrt (JNIEnv *env, jclass c, jlong self)
{
    jint tcp_maxrt_ = (jint) zsock_tcp_maxrt ((zsock_t *) (intptr_t) self);
    return tcp_maxrt_;
}