-
Notifications
You must be signed in to change notification settings - Fork 1
/
mioctl.c
46 lines (35 loc) · 902 Bytes
/
mioctl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "marignotti.h"
#include <gno/kerntool.h>
#include <errno.h>
#include <sys/ioctl.h>
#pragma noroot
#pragma optimize 79
int mioctl(Entry *e, void *p1, void *p2, void *p3, void *p4, void *p5)
{
Word t;
Word terr;
LongWord tioc = *(LongWord *)p1;
void *data = (void *)p3;
if (tioc == FIONREAD)
{
// return # of bytes available
IncBusy();
terr = TCPIPStatusTCP(e->ipid, &e->sr);
t = _toolErr;
DecBusy();
if (t) terr = t;
if (data) *(Word *)data = e->sr.srRcvQueued;
return 0;
}
if (tioc == FIONBIO)
{
// set/clear non-blocking io.
int tmp;
tmp = data ? *(int *)data : 0;
e->_NONBLOCK = tmp ? 1 : 0;
return 0;
}
// SIOCSHIWAT / SIOCGHIWAT ?
// SIOCSLOWAT / SIOCGLOWAT ?
return EINVAL;
}