summaryrefslogtreecommitdiff
path: root/exports
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-04-26 12:43:34 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2023-09-25 09:43:37 +0200
commit56d7f4d6fc7f4e3a0e31d38f9b73de0375e90349 (patch)
treebd1a9ba288c36ad189bdf40a4a58c168086e38d7 /exports
parent4a56922cd22f9297bc54443717e9d9542cea2edc (diff)
Exports: Remove server.h
Diffstat (limited to 'exports')
-rw-r--r--exports/server.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/exports/server.h b/exports/server.h
deleted file mode 100644
index 4bc8a16..0000000
--- a/exports/server.h
+++ /dev/null
@@ -1,47 +0,0 @@
-#ifndef SERVER_H
-#define SERVER_H
-
-// The struct for a single server profile
-typedef struct serverProfile {
- const char* id;
- const char* display_name;
- //const char* proto_list;
- int default_gateway;
-} serverProfile;
-
-// The struct for all server profiles
-typedef struct serverProfiles {
- int current;
- serverProfile** profiles;
- size_t total_profiles;
-} serverProfiles;
-
-// The struct for server locations
-typedef struct serverLocations {
- const char** locations;
- size_t total_locations;
-} serverLocations;
-
-// The struct for a single server
-typedef struct server {
- const char* identifier;
- const char* display_name;
- const char* server_type;
- const char* country_code;
- const char** support_contact;
- size_t total_support_contact;
- serverLocations* locations;
- serverProfiles* profiles;
- unsigned long long int expire_time;
-} server;
-
-// The struct for all servers
-typedef struct servers {
- server** custom_servers;
- size_t total_custom;
- server** institute_servers;
- size_t total_institute;
- server* secure_internet_server;
-} servers;
-
-#endif /* GRANDPARENT_H */