Defined generic boolean PA-TNC attribute
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2011-2014 Andreas Steffen
|
||||
* Copyright (C) 2011-2015 Andreas Steffen
|
||||
* HSR Hochschule fuer Technik Rapperswil
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
@@ -18,10 +18,9 @@
|
||||
#include <imc/imc_agent.h>
|
||||
#include <imc/imc_msg.h>
|
||||
#include <imc/imc_os_info.h>
|
||||
#include <generic/generic_attr_bool.h>
|
||||
#include <ietf/ietf_attr.h>
|
||||
#include <ietf/ietf_attr_attr_request.h>
|
||||
#include <ietf/ietf_attr_default_pwd_enabled.h>
|
||||
#include <ietf/ietf_attr_fwd_enabled.h>
|
||||
#include <ietf/ietf_attr_installed_packages.h>
|
||||
#include <ietf/ietf_attr_numeric_version.h>
|
||||
#include <ietf/ietf_attr_op_status.h>
|
||||
@@ -214,7 +213,8 @@ static void add_fwd_enabled(imc_msg_t *msg)
|
||||
fwd_status = os->get_fwd_status(os);
|
||||
DBG1(DBG_IMC, "IPv4 forwarding is %N",
|
||||
os_fwd_status_names, fwd_status);
|
||||
attr = ietf_attr_fwd_enabled_create(fwd_status);
|
||||
attr = generic_attr_bool_create(fwd_status, pen_type_create(PEN_IETF,
|
||||
IETF_ATTR_FORWARDING_ENABLED));
|
||||
msg->add_attribute(msg, attr);
|
||||
}
|
||||
|
||||
@@ -226,7 +226,8 @@ static void add_default_pwd_enabled(imc_msg_t *msg)
|
||||
pa_tnc_attr_t *attr;
|
||||
|
||||
DBG1(DBG_IMC, "factory default password is disabled");
|
||||
attr = ietf_attr_default_pwd_enabled_create(FALSE);
|
||||
attr = generic_attr_bool_create(FALSE, pen_type_create(PEN_IETF,
|
||||
IETF_ATTR_FACTORY_DEFAULT_PWD_ENABLED));
|
||||
msg->add_attribute(msg, attr);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user