blob: 473280c33fbf6ec2ede17101c87fde8adb186177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
* Copyright (C) 2012 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 <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 ietf_attr_remediation_instrt ietf_attr_remediation_instr
* @{ @ingroup ietf
*/
#ifndef IETF_ATTR_REMEDIATION_INSTR_H_
#define IETF_ATTR_REMEDIATION_INSTR_H_
typedef struct ietf_attr_remediation_instr_t ietf_attr_remediation_instr_t;
typedef enum ietf_remediation_parameters_t ietf_remediation_parameters_t;
#include "ietf_attr.h"
#include "pa_tnc/pa_tnc_attr.h"
enum ietf_remediation_parameters_t {
IETF_REMEDIATION_PARAMETERS_URI = 1,
IETF_REMEDIATION_PARAMETERS_STRING = 2
};
/**
* Class implementing the IETF PA-TNC Remediation Instructions attribute.
*
*/
struct ietf_attr_remediation_instr_t {
/**
* Public PA-TNC attribute interface
*/
pa_tnc_attr_t pa_tnc_attribute;
/**
* Get the Remediation Parameters Type (Vendor ID and Type)
*
* @return Remediation Parameters Type
*/
pen_type_t (*get_parameters_type)(ietf_attr_remediation_instr_t *this);
/**
* Get the Remediation Parameters
*
* @return Remediation Parameters
*/
chunk_t (*get_parameters)(ietf_attr_remediation_instr_t *this);
/**
* Get the Remediation URI
*
* @return Remediation URI
*/
chunk_t (*get_uri)(ietf_attr_remediation_instr_t *this);
/**
* Get the Remediation String
*
* @param lang_code Optional Language Code
* @return Remediation String
*/
chunk_t (*get_string)(ietf_attr_remediation_instr_t *this,
chunk_t *lang_code);
};
/**
* Creates a general ietf_attr_remediation_instr_t object
*
* @param parameters_type Remediation Parameters Type
* @param parameters Remediation Parameters
*/
pa_tnc_attr_t* ietf_attr_remediation_instr_create(pen_type_t parameters_type,
chunk_t parameters);
/**
* Creates an ietf_attr_remediation_instr_t object of Remediation URI Type
*
* @param uri Remediation URI
*/
pa_tnc_attr_t* ietf_attr_remediation_instr_create_from_uri(chunk_t uri);
/**
* Creates an ietf_attr_remediation_instr_t object of Remediation String Type
*
* @param string Remediation String
* @param lang_code Remediation String Language Code
*/
pa_tnc_attr_t* ietf_attr_remediation_instr_create_from_string(chunk_t string,
chunk_t lang_code);
/**
* Creates an ietf_attr_remediation_instr_t object from received data
*
* @param value unparsed attribute value
*/
pa_tnc_attr_t* ietf_attr_remediation_instr_create_from_data(chunk_t value);
#endif /** IETF_ATTR_REMEDIATION_INSTR_H_ @}*/
|