X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fmtio.h;h=ffb57da0c253587166faa8c647ca4059015604e2;hb=407963f25c664cd1450ec5f6eeb80c449ff57e74;hp=2bc21fd39f966d3912ecac81acecd1fe17594616;hpb=d8aea4cfb5e8ed4e7aa5969f75099d5693b63ef1;p=ashd.git diff --git a/lib/mtio.h b/lib/mtio.h index 2bc21fd..ffb57da 100644 --- a/lib/mtio.h +++ b/lib/mtio.h @@ -6,10 +6,23 @@ #define EV_READ 1 #define EV_WRITE 2 +struct stdiofd { + int fd; + int sock; + int timeout; + int rights, sendrights; +}; + +struct selected { + int fd, ev; +}; + +struct selected mblock(time_t to, int n, struct selected *spec); int block(int fd, int ev, time_t to); int ioloop(void); void exitioloop(int status); -FILE *mtstdopen(int fd, int issock, int timeout, char *mode); +FILE *mtstdopen(int fd, int issock, int timeout, char *mode, struct stdiofd **infop); +struct bufio *mtbioopen(int fd, int issock, int timeout, char *mode, struct stdiofd **infop); void mtiopipe(FILE **read, FILE **write); #endif