X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fmtio.h;h=ffb57da0c253587166faa8c647ca4059015604e2;hb=407963f25c664cd1450ec5f6eeb80c449ff57e74;hp=32bb0adf6b2bb7f39550189a1ba8195e885f44df;hpb=83723896cdbe2fb064748e45611e9b9c829c1d72;p=ashd.git diff --git a/lib/mtio.h b/lib/mtio.h index 32bb0ad..ffb57da 100644 --- a/lib/mtio.h +++ b/lib/mtio.h @@ -1,10 +1,28 @@ #ifndef _LIB_MTIO_H #define _LIB_MTIO_H +#include + #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); -void ioloop(void); +int ioloop(void); +void exitioloop(int status); +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