File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / src / libtnccs / plugins / tnccs_dynamic / tnccs_dynamic.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 3 09:46:43 2020 UTC (4 years, 3 months ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, v5_8_4p7, HEAD
Strongswan

    1: /*
    2:  * Copyright (C) 2011-2015 Andreas Steffen
    3:  * HSR Hochschule fuer Technik Rapperswil
    4:  *
    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>.
    9:  *
   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
   13:  * for more details.
   14:  */
   15: 
   16: /**
   17:  * @defgroup tnccs_dynamic_h tnccs_dynamic
   18:  * @{ @ingroup tnccs_dynamic
   19:  */
   20: 
   21: #ifndef TNCCS_DYNAMIC_H_
   22: #define TNCCS_DYNAMIC_H_
   23: 
   24: #include <library.h>
   25: 
   26: #include <tnc/tnccs/tnccs.h>
   27: 
   28: /**
   29:  * Create an instance of a dynamic TNC IF-TNCCS protocol handler.
   30:  *
   31:  * @param is_server		TRUE to act as TNC Server, FALSE for TNC Client
   32:  * @param server_id		Server identity
   33:  * @param peer_id		Client identity
   34:  * @param server_ip		Server IP address
   35:  * @param peer_ip		Client IP address
   36:  * @param transport		Underlying IF-T transport protocol
   37:  * @param cb			Callback function if TNC Server, NULL if TNC Client
   38:  * @return				dynamic TNC IF-TNCCS protocol stack
   39:  */
   40: tnccs_t* tnccs_dynamic_create(bool is_server, identification_t *server_id,
   41: 							  identification_t *peer_id, host_t *server_ip,
   42: 							  host_t *peer_ip, tnc_ift_type_t transport,
   43: 							  tnccs_cb_t cb);
   44: 
   45: #endif /** TNCCS_DYNAMIC_H_ @}*/

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>