X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=lib%2Fmtio.c;h=183f9f279532c54bffba137eb34a4cb70eb8cc81;hp=d7f36ac82d31be22e5d5c9111476d16ee2a15e99;hb=122c246222afdefdc2d50fdbac6f867849a33d5f;hpb=4930589b97e949a602e82a77463051e0b83d119f diff --git a/lib/mtio.c b/lib/mtio.c index d7f36ac..183f9f2 100644 --- a/lib/mtio.c +++ b/lib/mtio.c @@ -121,6 +121,34 @@ FILE *mtstdopen(int fd, int issock, int timeout, char *mode, struct stdiofd **in return(ret); } +struct bufio *mtbioopen(int fd, int issock, int timeout, char *mode, struct stdiofd **infop) +{ + static struct bufioops ops = { + .read = mtread, .write = mtwrite, .close = mtclose, + }; + struct stdiofd *d; + struct bufio *ret; + + if(!strcmp(mode, "r")) { + } else if(!strcmp(mode, "w")) { + } else if(!strcmp(mode, "r+")) { + } else { + return(NULL); + } + omalloc(d); + d->fd = fd; + d->sock = issock; + d->timeout = timeout; + if(!(ret = bioopen(d, &ops))) { + free(d); + return(NULL); + } + fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); + if(infop) + *infop = d; + return(ret); +} + struct pipe { struct charbuf data; size_t bufmax;