Added struct uri

This commit is contained in:
2020-12-13 14:12:41 +01:00
parent a5919807a3
commit db94388e69

View File

@ -8,4 +8,16 @@
#ifndef NECRONDA_SERVER_URI_H
#define NECRONDA_SERVER_URI_H
#include <sys/stat.h>
typedef struct {
char *webroot;
char *path;
char *pathinfo;
char *query;
char *filename;
char *uri;
struct stat stat;
} uri;
#endif //NECRONDA_SERVER_URI_H