blob: 3085fe868d1616981288e370a8c1099d9d60e8ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ISC license. */
#include <skalibs/buffer.h>
#include <skalibs/stralloc.h>
#include <skalibs/textmessage.h>
int textmessage_receiver_init (textmessage_receiver *tr, int fd, char *buf, size_t buflen, uint32_t max)
{
if (!buffer_init(&tr->in, &buffer_read, fd, buf, buflen)) return 0 ;
tr->indata = stralloc_zero ;
tr->wanted = 0 ;
tr->max = max ;
return 1 ;
}
|