blob: 3b34638a899593169eb7cf39482f9ac18d822a7e (
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
63
64
65
|
/*
* Copyright (C) 2015 Andreas Steffen
* HSR Hochschule fuer Technik Rapperswil
*
* 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 tnccs_20_client_h tnccs_20_client
* @{ @ingroup tnccs_20
*/
#ifndef TNCCS_20_CLIENT_H_
#define TNCCS_20_CLIENT_H_
#include <library.h>
#include <tnc/tnccs/tnccs.h>
#include "tnccs_20_handler.h"
typedef struct tnccs_20_client_t tnccs_20_client_t;
/**
* Interface for a TNC client
*/
struct tnccs_20_client_t {
/**
* IF-TNCCS 2.0 protocol handler interface
*/
tnccs_20_handler_t handler;
/**
* Get PDP server information if available
*
* @param port PT-TLS port of the PDP server
* @return FQDN of PDP server
*/
chunk_t (*get_pdp_server)(tnccs_20_client_t *this, uint16_t *port);
};
/**
* Create an instance of the TNC IF-TNCCS 2.0 client-side protocol handler.
*
* @param tnccs TNC IF-TNCCS 2.0 stack
* @param send_msg TNF IF-TNCCS 2.0 send message callback function
* @param max_batch_len Maximum PB-TNC batch size
* @param max_msg_len Maximum PA-TNC message size
*/
tnccs_20_handler_t* tnccs_20_client_create(tnccs_t *tnccs,
tnccs_send_message_t send_msg,
size_t max_batch_len,
size_t max_msg_len);
#endif /** TNCCS_20_CLIENT_H_ @}*/
|