2 * Copyright (C) 2010 Andreas Steffen
3 * HSR Hochschule fuer Technik Rapperswil
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 tnccs_manager tnccs_manager
21 #ifndef TNCCS_MANAGER_H_
22 #define TNCCS_MANAGER_H_
27 typedef struct tnccs_manager_t tnccs_manager_t
;
30 * The TNCCS manager manages all TNCCS implementations and creates instances.
32 * A plugin registers its implemented TNCCS protocol with the manager by
33 * providing type and a constructor function. The manager then creates
34 * TNCCS protocol instances via the provided constructor.
36 struct tnccs_manager_t
{
39 * Register a TNCCS protocol implementation.
41 * @param type TNCCS protocol type
42 * @param constructor constructor, returns a TNCCS protocol implementation
44 void (*add_method
)(tnccs_manager_t
*this, tnccs_type_t type
,
45 tnccs_constructor_t constructor
);
48 * Unregister a TNCCS protocol implementation using it's constructor.
50 * @param constructor constructor function to remove, as added in add_method
52 void (*remove_method
)(tnccs_manager_t
*this, tnccs_constructor_t constructor
);
55 * Create a new TNCCS protocol instance.
57 * @param type type of the TNCCS protocol
58 * @param is_server TRUE if TNC Server, FALSE if TNC Client
59 * @return TNCCS protocol instance, NULL if no constructor found
61 tnccs_t
* (*create_instance
)(tnccs_manager_t
*this, tnccs_type_t type
,
65 * Create a TNCCS connection and assign a unique connection ID
67 * @param tnccs TNCCS connection instance
68 * @result assigned connection ID
70 TNC_ConnectionID (*create_connection
)(tnccs_manager_t
*this, tnccs_t
*tnccs
);
73 * Remove a TNCCS connection using its connection ID.
75 * @param id connection ID of the connection to be removed
77 void (*remove_connection
)(tnccs_manager_t
*this, TNC_ConnectionID id
);
80 * Destroy a tnccs_manager instance.
82 void (*destroy
)(tnccs_manager_t
*this);
86 * Create a tnccs_manager instance.
88 tnccs_manager_t
*tnccs_manager_create();
90 #endif /** TNCCS_MANAGER_H_ @}*/