diff options
Diffstat (limited to 'httpd.c')
| -rw-r--r-- | httpd.c | 16 |
1 files changed, 8 insertions, 8 deletions
| @@ -98,14 +98,14 @@ void httpd_connection(FILE *f) | |||
| 98 | { | 98 | { |
| 99 | xs *req; | 99 | xs *req; |
| 100 | char *method; | 100 | char *method; |
| 101 | int status = 0; | 101 | int status = 0; |
| 102 | char *body = NULL; | 102 | d_char *body = NULL; |
| 103 | int b_size = 0; | 103 | int b_size = 0; |
| 104 | char *ctype = NULL; | 104 | char *ctype = NULL; |
| 105 | xs *headers = NULL; | 105 | xs *headers = NULL; |
| 106 | xs *q_path = NULL; | 106 | xs *q_path = NULL; |
| 107 | xs *payload = NULL; | 107 | xs *payload = NULL; |
| 108 | int p_size = 0; | 108 | int p_size = 0; |
| 109 | char *p; | 109 | char *p; |
| 110 | 110 | ||
| 111 | req = xs_httpd_request(f, &payload, &p_size); | 111 | req = xs_httpd_request(f, &payload, &p_size); |