X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=util.c;h=9a20420e38de1de999f0016cb600ab90dc21799d;hb=ff1dcd860a6176d24ad1dd7c3b8756c685ca90c6;hp=8c23485c059581cbb2aef2c1d8c40628dbaeecaa;hpb=925c5ca83e5eb67604b837ce8d3e02fae2adb260;p=secnet.git diff --git a/util.c b/util.c index 8c23485..9a20420 100644 --- a/util.c +++ b/util.c @@ -435,3 +435,30 @@ int32_t calculate_max_start_pad(void) transform_max_start_pad + comm_max_start_pad; } + +void vslilog_part(struct log_if *lf, int priority, const char *message, va_list ap) +{ + char *buff=lf->buff; + size_t bp; + char *nlp; + + bp=strlen(buff); + assert(bp < LOG_MESSAGE_BUFLEN); + vsnprintf(buff+bp,LOG_MESSAGE_BUFLEN-bp,message,ap); + buff[LOG_MESSAGE_BUFLEN-1] = '\n'; + buff[LOG_MESSAGE_BUFLEN] = '\0'; + /* Each line is sent separately */ + while ((nlp=strchr(buff,'\n'))) { + *nlp=0; + slilog(lf,priority,"%s",buff); + memmove(buff,nlp+1,strlen(nlp+1)+1); + } +} + +extern void slilog_part(struct log_if *lf, int priority, const char *message, ...) +{ + va_list ap; + va_start(ap,message); + vslilog_part(lf,priority,message,ap); + va_end(ap); +}