proxlib/structs.h

35 lines
792 B
C
Raw Normal View History

2024-07-21 20:41:14 +00:00
#ifndef STRUCTS_H
#define STRUCTS_H
2024-07-31 22:11:41 +00:00
#define SERVER_MODE "server"
#define CLIENT_MODE "client"
#define PROXY_PORT 2020
#define PROXY_CONN 20
#define PROXY_MAX_MSGLEN 10*1024
#define REGEX_MATCHN 4
#define REGEX_TITLE "^([A-Z]+)[ ]+([a-zA-Z0-9\\:\\/\\_\\-\\.\\,]+)"\
"[ ]+([a-zA-Z0-9\\_\\-\\.\\,\\/]+)[ ]*$|\n|\r"
#define REGEX_HEADER "^([a-zA-Z0-9\\-\\_]*):[ \t]+(.*)$|\n|\r"
#define CLIENT_MESSAGE "GET http://google.com/auth HTTP/1.0\n"\
"\n"\
"Host: google.com\n"\
"Authorization: Bearer ffja2439gjawgjgojserg\n"
2024-07-21 20:41:14 +00:00
struct header {
char *key;
char *value;
};
struct http_msg {
char *method;
char *uri;
char *ver;
2024-07-31 22:11:41 +00:00
int header_num;
2024-07-21 20:41:14 +00:00
struct header *headers;
};
#endif