1
0
mirror of https://github.com/kakwa/uts-server synced 2024-07-07 10:49:30 +02:00
uts-server/inc/context.h
2016-08-24 23:41:55 +02:00

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;