1
0
mirror of https://github.com/kakwa/uts-server synced 2025-01-09 05:04:29 +01:00
uts-server/inc/context.h

14 lines
283 B
C
Raw Normal View History

#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h> /* for offsetof() macro */
#include <string.h>
2016-08-24 23:03:49 +02:00
#include <openssl/ts.h>
typedef struct {
uint64_t query_counter;
bool stdout_dbg;
2016-08-24 23:03:49 +02:00
TS_RESP_CTX *resp_ctx;
2016-08-24 23:41:55 +02:00
int loglevel;
} rfc3161_context;