minor fix in man page;

v0.5.xx
Alexander Vdolainen 9 years ago
parent 46f4c7aa67
commit ff1aa8ff48

@ -3,6 +3,8 @@
sxmsg_rreply \- Function used to send a rapid reply without confirmation sxmsg_rreply \- Function used to send a rapid reply without confirmation
.SH SYNOPSIS .SH SYNOPSIS
.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
.if t .ft CW .if t .ft CW
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);
.SH APPLICATION USAGE .SH APPLICATION USAGE
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.

Loading…
Cancel
Save