/* * Copyright (C) 2010 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 . * * 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_recommendation_msg tnccs_recommendation_msg * @{ @ingroup tnccs_11 */ #ifndef TNCCS_RECOMMENDATION_MSG_H_ #define TNCCS_RECOMMENDATION_MSG_H_ typedef struct tnccs_recommendation_msg_t tnccs_recommendation_msg_t; #include "tnccs_msg.h" #include /** * Class representing the TNCCS-Recommendation message type */ struct tnccs_recommendation_msg_t { /** * TNCCS Message interface */ tnccs_msg_t tnccs_msg_interface; /** * Get Action Recommendation * * @return Action Recommendation */ TNC_IMV_Action_Recommendation (*get_recommendation)(tnccs_recommendation_msg_t *this); }; /** * Create a TNCCS-Recommendation message from XML-encoded message node * * @param node XML-encoded message node * @param errors linked list of TNCCS error messages */ tnccs_msg_t *tnccs_recommendation_msg_create_from_node(xmlNodePtr node, linked_list_t *errors); /** * Create a TNCCS-Recommendation message from parameters * * @param rec Action Recommendation */ tnccs_msg_t *tnccs_recommendation_msg_create(TNC_IMV_Action_Recommendation rec); #endif /** TNCCS_RECOMMENDATION_MSG_H_ @}*/