From 537a09d4334f1555b80d87b7d935328963a21739 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Wed, 29 Mar 2023 11:58:46 +0200 Subject: Client + Server: Implement a token updater callback --- exports/server.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 exports/server.h (limited to 'exports/server.h') diff --git a/exports/server.h b/exports/server.h new file mode 100644 index 0000000..4bc8a16 --- /dev/null +++ b/exports/server.h @@ -0,0 +1,47 @@ +#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 */ -- cgit v1.2.3