You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
188 B
C
10 lines
188 B
C
19 years ago
|
#ifndef _REQUEST_H_
|
||
|
#define _REQUEST_H_
|
||
|
|
||
|
#include "server.h"
|
||
|
|
||
|
int http_request_parse(server *srv, connection *con);
|
||
|
int http_request_header_finished(server *srv, connection *con);
|
||
|
|
||
|
#endif
|