aboutsummaryrefslogtreecommitdiffstats
path: root/src/libpttls/pt_tls_dispatcher.h
blob: 5d01f7fef68135ff08adb8d59e457fecd69d0088 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Copyright (C) 2012 Martin Willi
 * Copyright (C) 2012 revosec AG
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 */

/**
 * @defgroup pt_tls_dispatcher pt_tls_dispatcher
 * @{ @ingroup pt_tls
 */

#ifndef PT_TLS_DISPATCHER_H_
#define PT_TLS_DISPATCHER_H_

#include <networking/host.h>
#include <utils/identification.h>

#include <tnc/tnccs/tnccs.h>

typedef struct pt_tls_dispatcher_t pt_tls_dispatcher_t;

/**
 * PT-TLS dispatcher service, handles PT-TLS connections as a server.
 */
struct pt_tls_dispatcher_t {

	/**
	 * Dispatch and handle PT-TLS connections.
	 *
	 * This call is blocking and a thread cancellation point. The passed
	 * constructor gets called for each dispatched connection.
	 *
	 * @param create		TNCCS constructor function to use
	 */
	void (*dispatch)(pt_tls_dispatcher_t *this, tnccs_t*(*create)());

	/**
	 * Destroy a pt_tls_dispatcher_t.
	 */
	void (*destroy)(pt_tls_dispatcher_t *this);
};

/**
 * Create a pt_tls_dispatcher instance.
 *
 * @param address		server address with port to listen on, gets owned
 * @param id			TLS server identity, gets owned
 * @return				dispatcher service
 */
pt_tls_dispatcher_t *pt_tls_dispatcher_create(host_t *address,
											  identification_t *id);

#endif /** PT_TLS_DISPATCHER_H_ @}*/