about summary refs log tree commit homepage
path: root/http.h
diff options
context:
space:
mode:
Diffstat (limited to 'http.h')
-rw-r--r--http.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/http.h b/http.h
index 3064d6e..5dd3a30 100644
--- a/http.h
+++ b/http.h
@@ -1,9 +1,8 @@
 #include "iov_str.h"
-void mog_http_resp0(
-        struct mog_http *, struct iovec *status, bool alive);
+void mog_http_resp0(struct mog_fd *, struct iovec *status, bool alive);
 
-#define mog_http_resp(http,conststr,alive) do { \
+#define mog_http_resp(mfd,conststr,alive) do { \
         struct iovec statustmp; \
         IOV_STR(&statustmp, (conststr)); \
-        mog_http_resp0((http), &statustmp, (alive)); \
+        mog_http_resp0((mfd), &statustmp, (alive)); \
 } while (0)