1
0
mirror of https://github.com/kakwa/uts-server synced 2024-06-03 01:28:08 +02:00
uts-server/inc/config.h
2016-08-23 19:38:07 +02:00

14 lines
206 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;