strongswan/src/libcharon/plugins/tnccs_20/messages/pb_access_recommendation_msg.h

77 lines
2.1 KiB
C

/*
* Copyright (C) 2010 Sansar Choinyambuu
* 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 pb_access_recommendation_msg pb_access_recommendation_msg
* @{ @ingroup tnccs_20
*/
#ifndef PB_ACCESS_RECOMMENDATION_MSG_H_
#define PB_ACCESS_RECOMMENDATION_MSG_H_
typedef enum pb_access_recommendation_code_t pb_access_recommendation_code_t;
typedef struct pb_access_recommendation_msg_t pb_access_recommendation_msg_t;
#include "pb_tnc_msg.h"
/**
* PB Access Recommendation Codes as defined in section 4.7 of RFC 5793
*/
enum pb_access_recommendation_code_t {
PB_REC_ACCESS_ALLOWED = 1,
PB_REC_ACCESS_DENIED = 2,
PB_REC_QUARANTINED = 3,
};
/**
* enum name for pb_access_recommendation_code_t.
*/
extern enum_name_t *pb_access_recommendation_code_names;
/**
* Class representing the PB-Access-Recommendation message type.
*/
struct pb_access_recommendation_msg_t {
/**
* PB-TNC Message interface
*/
pb_tnc_msg_t pb_interface;
/**
* Get PB Access Recommendation
*
* @return PB Access Recommendation
*/
u_int16_t (*get_access_recommendation)(pb_access_recommendation_msg_t *this);
};
/**
* Create a PB-Access-Recommendation message from parameters
*
* @param recommendation Access Recommendation code
*/
pb_tnc_msg_t* pb_access_recommendation_msg_create(u_int16_t recommendation);
/**
* Create an unprocessed PB-Access-Recommendation message from raw data
*
* @param data PB-Access-Recommendation message data
*/
pb_tnc_msg_t* pb_access_recommendation_msg_create_from_data(chunk_t data);
#endif /** PB_PA_MSG_H_ @}*/