mirror of
https://github.com/kakwa/uts-server
synced 2025-01-08 12:44:30 +01:00
14 lines
206 B
C
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;
|