doc: Documented htpipe.
[ashd.git] / src / htparser.h
index 88bfb6e..d9f014d 100644 (file)
@@ -6,7 +6,12 @@ struct conn {
     void *pdata;
 };
 
-void serve(FILE *in, struct conn *conn);
+struct mtbuf {
+    struct muth **b;
+    size_t s, d;
+};
+
+void serve(struct bufio *in, int infd, struct conn *conn);
 
 int listensock4(int port);
 int listensock6(int port);
@@ -16,4 +21,6 @@ void handleplain(int argc, char **argp, char **argv);
 void handlegnussl(int argc, char **argp, char **argv);
 #endif
 
+extern struct mtbuf listeners;
+
 #endif