1
0
mirror of https://github.com/kakwa/uts-server synced 2025-01-08 12:44:30 +01:00
uts-server/inc/config.h
Pierre-Francois Carpentier 8c57bcd0a0 adding configuration structure
2015-12-20 13:58:42 +01:00

14 lines
211 B
C

typedef struct uts_config {
char * port;
char * listen;
bool https;
cert https_cert;
void * ts_certs;
} uts_config;
typedef struct cert {
char * cert_file;
char * key_file;
} cert;