mirror of
https://github.com/kakwa/uts-server
synced 2025-07-04 04:27:05 +02:00
add the passing of the configuration file path and debug flag
This commit is contained in:
parent
63739e858f
commit
30e06d8db8
4 changed files with 15 additions and 7 deletions
|
@ -1,4 +1,5 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stddef.h> /* for offsetof() macro */
|
||||
#include <string.h>
|
||||
|
@ -6,5 +7,6 @@
|
|||
|
||||
typedef struct {
|
||||
uint64_t query_counter;
|
||||
bool stdout_dbg;
|
||||
TS_RESP_CTX *resp_ctx;
|
||||
} rfc3161_context;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#include <stdbool.h>
|
||||
#include "utils.h"
|
||||
#include "rfc3161.h"
|
||||
|
||||
int http_server_start();
|
||||
int http_server_start(char *conffile, bool stdout_dbg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue