1
0
Fork 0
mirror of https://github.com/kakwa/uts-server synced 2025-07-04 20:47:09 +02:00

adding a context which will be passed from query to query

This commit is contained in:
kakwa 2016-08-24 22:37:05 +02:00
parent b27d676148
commit c982c6b405
3 changed files with 22 additions and 4 deletions

9
inc/context.h Normal file
View file

@ -0,0 +1,9 @@
#include <stdlib.h>
#include <stdint.h>
#include <stddef.h> /* for offsetof() macro */
#include <string.h>
typedef struct {
uint64_t query_counter;
} rfc3161_context;

View file

@ -1 +1,3 @@
#include "context.h"
int http_server_start();