Tor 0.4.9.0-alpha-dev
context.h
1/* Copyright (c) 2020 tevador <tevador@gmail.com> */
2/* See LICENSE for licensing information */
3
4#ifndef CONTEXT_H
5#define CONTEXT_H
6
7#include <equix.h>
8#include <hashx.h>
9
10typedef struct solver_heap solver_heap;
11
12typedef struct equix_ctx {
13 hashx_ctx* hash_func;
14 solver_heap* heap;
15 equix_ctx_flags flags;
16} equix_ctx;
17
18#endif