Lines Matching defs:reply
36 * reply.
43 * reply from slpd
56 * code found in the reply from slpd
627 * 'reply' should point to the beginning of the header.
629 static SLPError UnpackSrvAck(char *reply, SLPError *ans) {
632 char *p = reply + SLP_HDRLEN;
634 langlen = slp_get_langlen(reply);
646 * dispatches the reply to the user callback.
650 char *reply = NULL;
656 if ((err = slp_send2slpd_iov(msg->msgiov, msg->msgiov_len, &reply))
664 if ((err = UnpackSrvAck(reply, &call_err)) != SLP_OK)
673 if (reply) {
674 free(reply);
763 char *reply;
772 p->msg->msgiov, p->msg->msgiov_len, &reply);
773 if (reply)
774 free(reply);