2 * Copyright (C) 2011-2012 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
16 #include "ietf_attr.h"
17 #include "ietf/ietf_attr_assess_result.h"
18 #include "ietf/ietf_attr_attr_request.h"
19 #include "ietf/ietf_attr_fwd_enabled.h"
20 #include "ietf/ietf_attr_default_pwd_enabled.h"
21 #include "ietf/ietf_attr_installed_packages.h"
22 #include "ietf/ietf_attr_numeric_version.h"
23 #include "ietf/ietf_attr_op_status.h"
24 #include "ietf/ietf_attr_pa_tnc_error.h"
25 #include "ietf/ietf_attr_port_filter.h"
26 #include "ietf/ietf_attr_product_info.h"
27 #include "ietf/ietf_attr_remediation_instr.h"
28 #include "ietf/ietf_attr_string_version.h"
31 ENUM(ietf_attr_names
, IETF_ATTR_TESTING
, IETF_ATTR_FACTORY_DEFAULT_PWD_ENABLED
,
34 "Product Information",
42 "Remediation Instructions",
44 "Factory Default Password Enabled",
50 pa_tnc_attr_t
* ietf_attr_create_from_data(u_int32_t type
, chunk_t value
)
54 case IETF_ATTR_ATTRIBUTE_REQUEST
:
55 return ietf_attr_attr_request_create_from_data(value
);
56 case IETF_ATTR_PRODUCT_INFORMATION
:
57 return ietf_attr_product_info_create_from_data(value
);
58 case IETF_ATTR_NUMERIC_VERSION
:
59 return ietf_attr_numeric_version_create_from_data(value
);
60 case IETF_ATTR_STRING_VERSION
:
61 return ietf_attr_string_version_create_from_data(value
);
62 case IETF_ATTR_OPERATIONAL_STATUS
:
63 return ietf_attr_op_status_create_from_data(value
);
64 case IETF_ATTR_PORT_FILTER
:
65 return ietf_attr_port_filter_create_from_data(value
);
66 case IETF_ATTR_INSTALLED_PACKAGES
:
67 return ietf_attr_installed_packages_create_from_data(value
);
68 case IETF_ATTR_PA_TNC_ERROR
:
69 return ietf_attr_pa_tnc_error_create_from_data(value
);
70 case IETF_ATTR_ASSESSMENT_RESULT
:
71 return ietf_attr_assess_result_create_from_data(value
);
72 case IETF_ATTR_REMEDIATION_INSTRUCTIONS
:
73 return ietf_attr_remediation_instr_create_from_data(value
);
74 case IETF_ATTR_FORWARDING_ENABLED
:
75 return ietf_attr_fwd_enabled_create_from_data(value
);
76 case IETF_ATTR_FACTORY_DEFAULT_PWD_ENABLED
:
77 return ietf_attr_default_pwd_enabled_create_from_data(value
);
78 case IETF_ATTR_TESTING
:
79 case IETF_ATTR_RESERVED
: