blob: e41f5202c6443c9a405b9f8b6b64f125119cf67c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ISC license. */
#include <stdint.h>
#include <sys/uio.h>
#include <skalibs/uint32.h>
#include <skalibs/siovec.h>
#include <skalibs/buffer.h>
#include <skalibs/textmessage.h>
int textmessage_receiver_hasmsginbuf (textmessage_receiver const *tr)
{
size_t len = buffer_len(&tr->in) ;
uint32_t n ;
char pack[4] ;
struct iovec v[2] ;
if (len < 4) return 0 ;
buffer_rpeek(&tr->in, v) ;
siovec_gather(v, 2, pack, 4) ;
uint32_unpack_big(pack, &n) ;
return len - 4 >= n ;
}
|