2 * Copyright (C) 2012 Martin Willi
3 * Copyright (C) 2012 revosec AG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup pt_tls_client pt_tls_client
21 #ifndef PT_TLS_CLIENT_H_
22 #define PT_TLS_CLIENT_H_
24 #include <tnc/tnccs/tnccs.h>
26 typedef struct pt_tls_client_t pt_tls_client_t
;
29 * IF-T for TLS aka PT-TLS transport client.
31 struct pt_tls_client_t
{
34 * Perform an assessment.
36 * @param tnccs upper layer TNC client used for assessment
37 * @return status of assessment
39 status_t (*run_assessment
)(pt_tls_client_t
*this, tnccs_t
*tnccs
);
42 * Destroy a pt_tls_client_t.
44 void (*destroy
)(pt_tls_client_t
*this);
48 * Create a pt_tls_client instance.
50 * @param server server address to run assessments against
51 * @param port server TCP port to connect to
52 * @return PT-TLS context
54 pt_tls_client_t
*pt_tls_client_create(char *server
, u_int16_t port
);
56 #endif /** PT_TLS_CLIENT_H_ @}*/