sxmsg_rreply \- Function used to send a rapid reply without confirmation
sxmsg_rreply \- Function used to send a rapid reply without confirmation
.SHSYNOPSIS
.SHSYNOPSIS
.B#include<sntl/sntllv2.h>
.B#include<sntl/sntllv2.h>
.br
.B#include<sntl/limits.h>
.sp
.sp
int sxmsg_rreply(sxmsg_t
int sxmsg_rreply(sxmsg_t
.BI*msg
.BI*msg
@ -43,7 +45,7 @@ Not known yet.
.nf
.nf
.ift.ftCW
.ift.ftCW
char *buf = sxmsg_rapidbuf(msg);
char *buf = sxmsg_rapidbuf(msg);
int ln = snprintf(buf, MAX_BBUFLEN, "(is-done)");
int ln = snprintf(buf, MAX_RBBUF_LEN, "(is-done)");
return sxmsg_rreply(msg, str, ln);
return sxmsg_rreply(msg, str, ln);
.SHAPPLICATIONUSAGE
.SHAPPLICATIONUSAGE
This function will be useful in RPC functions required to reply ASAP i.e. for getting some data. It RPC function takes a lot of time it's better to use other functions and postponed message processing.
This function will be useful in RPC functions required to reply ASAP i.e. for getting some data. It RPC function takes a lot of time it's better to use other functions and postponed message processing.