if (received_vendor)
{
DBG1(DBG_IKE, "server requested vendor specific EAP method %d-%d "
- "(id: %u)", received_type, received_vendor,
+ "(id 0x%02X", received_type, received_vendor,
in->get_identifier(in));
}
else
{
- DBG1(DBG_IKE, "server requested %N authentication (id: %u)",
+ DBG1(DBG_IKE, "server requested %N authentication (id 0x%02X)",
eap_type_names, received_type, in->get_identifier(in));
}
this->ph2_method = charon->eap->create_instance(charon->eap,
if (received_vendor)
{
DBG1(DBG_IKE, "server requested vendor specific EAP method %d-%d "
- "(id: %u)", received_type, received_vendor,
+ "(id 0x%02X)", received_type, received_vendor,
in->get_identifier(in));
}
else
{
- DBG1(DBG_IKE, "server requested %N authentication (id: %u)",
+ DBG1(DBG_IKE, "server requested %N authentication (id 0x%02X)",
eap_type_names, received_type, in->get_identifier(in));
}
this->method = charon->eap->create_instance(charon->eap,
{
if (vendor)
{
- DBG1(DBG_IKE, "initiating EAP vendor type %d-%d method (id: %u)",
+ DBG1(DBG_IKE, "initiating EAP vendor type %d-%d method (id 0x%02X)",
type, vendor, out->get_identifier(out));
}
else
{
- DBG1(DBG_IKE, "initiating %N method (id: %u)", eap_type_names,
+ DBG1(DBG_IKE, "initiating %N method (id 0x%02X)", eap_type_names,
type, out->get_identifier(out));
}
return out;
if (vendor)
{
DBG1(DBG_IKE, "server requested vendor specific EAP method %d-%d ",
- "(id: %u)", type, vendor, in->get_identifier(in));
+ "(id 0x%02X)", type, vendor, in->get_identifier(in));
}
else
{
- DBG1(DBG_IKE, "server requested %N authentication (id: %u)",
+ DBG1(DBG_IKE, "server requested %N authentication (id 0x%02X)",
eap_type_names, type, in->get_identifier(in));
}
this->method = load_method(this, type, vendor, EAP_PEER);