mirror of
https://github.com/kakwa/uts-server
synced 2025-01-08 12:44:30 +01:00
14 lines
283 B
C
14 lines
283 B
C
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h> /* for offsetof() macro */
|
|
#include <string.h>
|
|
#include <openssl/ts.h>
|
|
|
|
typedef struct {
|
|
uint64_t query_counter;
|
|
bool stdout_dbg;
|
|
TS_RESP_CTX *resp_ctx;
|
|
int loglevel;
|
|
} rfc3161_context;
|