Implemented hostnames

This commit is contained in:
Nate Choe
2022-01-26 06:04:43 -06:00
parent d16cc39f1e
commit db645b0bf5
9 changed files with 51 additions and 3 deletions

View File

@@ -30,5 +30,7 @@ typedef enum {
//INVALID in HTTP/1.1.
} RequestType;
int istrcmp(char *s1, char *s2);
//case insensitive strcmp
RequestType getType(char *str);
#endif