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.
|
struct RequestMeta {
|
|
char *path;
|
|
};
|
|
|
|
typedef struct RequestMeta RequestMeta;
|
|
|
|
struct ResponseMeta {
|
|
|
|
};
|
|
|
|
typedef struct ResponseMeta ResponseMeta;
|
|
|
|
void initialize();
|
|
int run();
|
|
void shutdown();
|
|
void set_root(char *);
|
|
void begin_request(RequestMeta *);
|
|
void end_request();
|