2 * Copyright (C) 2011 Sansar Choinyambuu
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 tcg_pts_attr_req_proto_caps tcg_pts_attr_req_proto_caps
18 * @{ @ingroup tcg_pts_attr_req_proto_caps
21 #ifndef TCG_PTS_ATTR_REQ_PROTO_CAPS_H_
22 #define TCG_PTS_ATTR_REQ_PROTO_CAPS_H_
24 typedef struct tcg_pts_attr_req_proto_caps_t tcg_pts_attr_req_proto_caps_t
;
27 #include "pa_tnc/pa_tnc_attr.h"
28 #include "tcg_pts_attr_proto_caps.h"
31 * Class implementing the TCG Request PTS Protocol Capabilities Attribute
34 struct tcg_pts_attr_req_proto_caps_t
{
37 * Public PA-TNC attribute interface
39 pa_tnc_attr_t pa_tnc_attribute
;
42 * Get PTS procol capabilities flags
44 * @return set of flags
46 pts_proto_caps_flag_t (*get_flags
)(tcg_pts_attr_req_proto_caps_t
*this);
49 * Set PTS procol capabilities flags
51 * @param flags set of flags
53 void (*set_flags
)(tcg_pts_attr_req_proto_caps_t
*this,
54 pts_proto_caps_flag_t flags
);
59 * Creates an tcg_pts_attr_req_proto_caps_t object
61 * @param flags set of flags
63 pa_tnc_attr_t
* tcg_pts_attr_req_proto_caps_create(pts_proto_caps_flag_t flags
);
66 * Creates an tcg_pts_attr_req_proto_caps_t object from received data
68 * @param value unparsed attribute value
70 pa_tnc_attr_t
* tcg_pts_attr_req_proto_caps_create_from_data(chunk_t value
);
72 #endif /** TCG_PTS_ATTR_REQ_PROTO_CAPS_H_ @}*/