File: tls-proxy.h

package info (click to toggle)
knot-resolver 6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 16,392 kB
  • sloc: javascript: 42,732; ansic: 40,312; python: 12,616; cpp: 2,121; sh: 1,997; xml: 193; makefile: 181
file content (34 lines) | stat: -rw-r--r-- 769 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#pragma once
/* SPDX-License-Identifier: GPL-3.0-or-later */

#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#include <stdint.h>
#include <stdbool.h>
#include <netinet/in.h>

struct args {
	const char *local_addr;
	uint16_t local_port;
	const char *upstream;
	uint16_t upstream_port;

	bool rehandshake;
	bool close_connection;
	bool accept_only;
	bool tls_13;

	uint64_t close_timeout;
	uint32_t max_conn_sequence;

	const char *cert_file;
	const char *key_file;
};

struct tls_proxy_ctx;

struct tls_proxy_ctx *tls_proxy_allocate(void);
void tls_proxy_free(struct tls_proxy_ctx *proxy);
int tls_proxy_init(struct tls_proxy_ctx *proxy, const struct args *a);
int tls_proxy_start_listen(struct tls_proxy_ctx *proxy);
int tls_proxy_run(struct tls_proxy_ctx *proxy);