Esempio n. 1
0
///
//  Send a reply frame to a server socket, copy the routing id from source message, destroy frame after sending.
//  Return -1 on error, 0 on success.                                                                           
int QmlZframeAttached::sendReply (QmlZframe *selfP, QmlZframe *sourceMsg, void *dest, int flags) {
    return zframe_send_reply (&selfP->self, sourceMsg->self, dest, flags);
};
Esempio n. 2
0
///
//  Send a reply frame to a server socket, copy the routing id from source message, destroy frame after sending.
//  Return -1 on error, 0 on success.                                                                           
int QZframe::sendReply (QZframe *sourceMsg, void *dest, int flags)
{
    int rv = zframe_send_reply (&self, sourceMsg->self, dest, flags);
    return rv;
}