Dolda2000 GitWeb
/
ashd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8aea4c
)
callfcgi: Use the library mtio pipes instead of kernel pipes.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Mon, 3 Mar 2014 00:08:05 +0000
(
01:08
+0100)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Mon, 3 Mar 2014 00:08:05 +0000
(
01:08
+0100)
src/callfcgi.c
patch
|
blob
|
blame
|
history
diff --git
a/src/callfcgi.c
b/src/callfcgi.c
index
9f30f00
..
e1d71f2
100644
(file)
--- a/
src/callfcgi.c
+++ b/
src/callfcgi.c
@@
-608,15
+608,6
@@
static int begreq(FILE *out, int rid)
return(sendrec(out, FCGI_BEGIN_REQUEST, rid, rec, 8));
}
-static void mtiopipe(FILE **read, FILE **write)
-{
- int fds[2];
-
- pipe(fds);
- *read = mtstdopen(fds[0], 0, 600, "r");
- *write = mtstdopen(fds[1], 0, 600, "w");
-}
-
static void outplex(struct muth *muth, va_list args)
{
vavar(FILE *, sk);