blob: 48d46b51a3faac3c8d237cf3215b2921b69731f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ISC license. */
#include <skalibs/genalloc.h>
#include <skalibs/diuint.h>
#include <skalibs/djbunix.h>
#include <skalibs/unixmessage.h>
int unixmessage_unput_and_maybe_drop (unixmessage_sender_t *b, int drop)
{
diuint *start ;
unsigned int n = genalloc_len(diuint, &b->offsets) ;
if (!n) return 0 ;
start = genalloc_s(diuint, &b->offsets) + n - 1 ;
if (drop)
{
register int *fds = genalloc_s(int, &b->fds) + start->right ;
register unsigned int i = genalloc_len(int, &b->fds) - start->right ;
while (i--) fd_close(fds[i] < 0 ? -(fds[i]+1) : fds[i]) ;
}
b->data.len = start->left ;
genalloc_setlen(int, &b->fds, start->right) ;
return 1 ;
}
|