1
0
mirror of https://github.com/kakwa/uts-server synced 2024-06-12 05:49:53 +02:00
uts-server/inc/config.h

14 lines
206 B
C
Raw Normal View History

2015-12-20 13:58:42 +01:00
typedef struct uts_config {
2016-08-23 19:38:07 +02:00
char *port;
char *listen;
2015-12-20 13:58:42 +01:00
bool https;
cert https_cert;
2016-08-23 19:38:07 +02:00
void *ts_certs;
2015-12-20 13:58:42 +01:00
} uts_config;
typedef struct cert {
2016-08-23 19:38:07 +02:00
char *cert_file;
char *key_file;
2015-12-20 13:58:42 +01:00
} cert;