Example #1
0
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsock__1_1useFd (JNIEnv *env, jclass c, jlong self)
{
    jint use_fd_ = (jint) zsock_use_fd ((zsock_t *) (intptr_t) self);
    return use_fd_;
}
Example #2
0
///
//  Get socket option `use_fd`.
int QZsock::useFd ()
{
    int rv = zsock_use_fd (self);
    return rv;
}
Example #3
0
///
//  Get socket option `use_fd`.
int QmlZsock::useFd () {
    return zsock_use_fd (self);
};