payload: Use common prefixes for all payload type identifiers
The old identifiers did not use a proper namespace and often clashed with other defines.
This commit is contained in:
@@ -133,7 +133,7 @@ static bool has_notify_errors(private_aggressive_mode_t *this, message_t *messag
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == NOTIFY_V1)
|
||||
if (payload->get_type(payload) == PLV1_NOTIFY)
|
||||
{
|
||||
notify_payload_t *notify;
|
||||
notify_type_t type;
|
||||
@@ -167,7 +167,7 @@ static status_t send_notify(private_aggressive_mode_t *this, notify_type_t type)
|
||||
u_int64_t spi_i, spi_r;
|
||||
chunk_t spi;
|
||||
|
||||
notify = notify_payload_create_from_protocol_and_type(NOTIFY_V1,
|
||||
notify = notify_payload_create_from_protocol_and_type(PLV1_NOTIFY,
|
||||
PROTO_IKE, type);
|
||||
ike_sa_id = this->ike_sa->get_id(this->ike_sa);
|
||||
spi_i = ike_sa_id->get_initiator_spi(ike_sa_id);
|
||||
@@ -276,7 +276,7 @@ METHOD(task_t, build_i, status_t,
|
||||
return FAILED;
|
||||
}
|
||||
this->ike_sa->set_my_id(this->ike_sa, id->clone(id));
|
||||
id_payload = id_payload_create_from_identification(ID_V1, id);
|
||||
id_payload = id_payload_create_from_identification(PLV1_ID, id);
|
||||
this->id_data = id_payload->get_encoded(id_payload);
|
||||
message->add_payload(message, &id_payload->payload_interface);
|
||||
|
||||
@@ -389,7 +389,7 @@ METHOD(task_t, process_r, status_t,
|
||||
message->get_source(message), TRUE);
|
||||
|
||||
sa_payload = (sa_payload_t*)message->get_payload(message,
|
||||
SECURITY_ASSOCIATION_V1);
|
||||
PLV1_SECURITY_ASSOCIATION);
|
||||
if (!sa_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "SA payload missing");
|
||||
@@ -448,7 +448,7 @@ METHOD(task_t, process_r, status_t,
|
||||
return send_notify(this, INVALID_PAYLOAD_TYPE);
|
||||
}
|
||||
|
||||
id_payload = (id_payload_t*)message->get_payload(message, ID_V1);
|
||||
id_payload = (id_payload_t*)message->get_payload(message, PLV1_ID);
|
||||
if (!id_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "IDii payload missing");
|
||||
@@ -588,7 +588,7 @@ METHOD(task_t, build_r, status_t,
|
||||
}
|
||||
this->ike_sa->set_my_id(this->ike_sa, id->clone(id));
|
||||
|
||||
id_payload = id_payload_create_from_identification(ID_V1, id);
|
||||
id_payload = id_payload_create_from_identification(PLV1_ID, id);
|
||||
message->add_payload(message, &id_payload->payload_interface);
|
||||
|
||||
if (!this->ph1->build_auth(this->ph1, this->method, message,
|
||||
@@ -614,7 +614,7 @@ METHOD(task_t, process_i, status_t,
|
||||
u_int32_t lifetime;
|
||||
|
||||
sa_payload = (sa_payload_t*)message->get_payload(message,
|
||||
SECURITY_ASSOCIATION_V1);
|
||||
PLV1_SECURITY_ASSOCIATION);
|
||||
if (!sa_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "SA payload missing");
|
||||
@@ -654,7 +654,7 @@ METHOD(task_t, process_i, status_t,
|
||||
return send_notify(this, NO_PROPOSAL_CHOSEN);
|
||||
}
|
||||
|
||||
id_payload = (id_payload_t*)message->get_payload(message, ID_V1);
|
||||
id_payload = (id_payload_t*)message->get_payload(message, PLV1_ID);
|
||||
if (!id_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "IDir payload missing");
|
||||
|
||||
@@ -93,7 +93,7 @@ METHOD(task_t, process_r, status_t,
|
||||
{
|
||||
switch (payload->get_type(payload))
|
||||
{
|
||||
case NOTIFY_V1:
|
||||
case PLV1_NOTIFY:
|
||||
notify = (notify_payload_t*)payload;
|
||||
type = notify->get_notify_type(notify);
|
||||
|
||||
@@ -153,7 +153,7 @@ METHOD(task_t, process_r, status_t,
|
||||
notify_type_names, type);
|
||||
}
|
||||
continue;
|
||||
case DELETE_V1:
|
||||
case PLV1_DELETE:
|
||||
if (!this->del)
|
||||
{
|
||||
delete = (delete_payload_t*)payload;
|
||||
|
||||
@@ -68,7 +68,7 @@ static bool use_certs(private_isakmp_cert_post_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == SECURITY_ASSOCIATION_V1)
|
||||
if (payload->get_type(payload) == PLV1_SECURITY_ASSOCIATION)
|
||||
{
|
||||
sa_payload_t *sa_payload = (sa_payload_t*)payload;
|
||||
|
||||
@@ -132,7 +132,7 @@ static void build_certs(private_isakmp_cert_post_t *this, message_t *message)
|
||||
{
|
||||
break;
|
||||
}
|
||||
payload = cert_payload_create_from_cert(CERTIFICATE_V1, cert);
|
||||
payload = cert_payload_create_from_cert(PLV1_CERTIFICATE, cert);
|
||||
if (!payload)
|
||||
{
|
||||
break;
|
||||
@@ -146,7 +146,7 @@ static void build_certs(private_isakmp_cert_post_t *this, message_t *message)
|
||||
{
|
||||
if (type == AUTH_RULE_IM_CERT)
|
||||
{
|
||||
payload = cert_payload_create_from_cert(CERTIFICATE_V1, cert);
|
||||
payload = cert_payload_create_from_cert(PLV1_CERTIFICATE, cert);
|
||||
if (payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "sending issuer cert \"%Y\"",
|
||||
|
||||
@@ -134,7 +134,7 @@ static void process_certreqs(private_isakmp_cert_pre_t *this, message_t *message
|
||||
{
|
||||
switch (payload->get_type(payload))
|
||||
{
|
||||
case CERTIFICATE_REQUEST_V1:
|
||||
case PLV1_CERTREQ:
|
||||
{
|
||||
certificate_t *cert;
|
||||
|
||||
@@ -268,7 +268,7 @@ static void process_certs(private_isakmp_cert_pre_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == CERTIFICATE_V1)
|
||||
if (payload->get_type(payload) == PLV1_CERTIFICATE)
|
||||
{
|
||||
cert_payload_t *cert_payload;
|
||||
cert_encoding_t encoding;
|
||||
@@ -377,7 +377,7 @@ static void build_certreqs(private_isakmp_cert_pre_t *this, message_t *message)
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
}
|
||||
if (!message->get_payload(message, CERTIFICATE_REQUEST_V1))
|
||||
if (!message->get_payload(message, PLV1_CERTREQ))
|
||||
{
|
||||
/* otherwise add all trusted CA certificates */
|
||||
enumerator = lib->credmgr->create_cert_enumerator(lib->credmgr,
|
||||
@@ -402,7 +402,7 @@ static bool use_certs(private_isakmp_cert_pre_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == SECURITY_ASSOCIATION_V1)
|
||||
if (payload->get_type(payload) == PLV1_SECURITY_ASSOCIATION)
|
||||
{
|
||||
sa_payload_t *sa_payload = (sa_payload_t*)payload;
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ METHOD(task_t, build_i, status_t,
|
||||
this->ike_sa->get_other_host(this->ike_sa),
|
||||
this->ike_sa->get_other_id(this->ike_sa));
|
||||
|
||||
delete_payload = delete_payload_create(DELETE_V1, PROTO_IKE);
|
||||
delete_payload = delete_payload_create(PLV1_DELETE, PROTO_IKE);
|
||||
id = this->ike_sa->get_id(this->ike_sa);
|
||||
delete_payload->set_ike_spi(delete_payload, id->get_initiator_spi(id),
|
||||
id->get_responder_spi(id));
|
||||
|
||||
@@ -55,7 +55,7 @@ METHOD(task_t, build, status_t,
|
||||
u_int32_t seqnr;
|
||||
chunk_t spi;
|
||||
|
||||
notify = notify_payload_create_from_protocol_and_type(NOTIFY_V1,
|
||||
notify = notify_payload_create_from_protocol_and_type(PLV1_NOTIFY,
|
||||
PROTO_IKE, this->type);
|
||||
seqnr = htonl(this->seqnr);
|
||||
ike_sa_id = this->ike_sa->get_id(this->ike_sa);
|
||||
|
||||
@@ -117,9 +117,9 @@ static payload_type_t get_nat_d_payload_type(ike_sa_t *ike_sa)
|
||||
{
|
||||
if (ike_sa->supports_extension(ike_sa, EXT_NATT_DRAFT_02_03))
|
||||
{
|
||||
return NAT_D_DRAFT_00_03_V1;
|
||||
return PLV1_NAT_D_DRAFT_00_03;
|
||||
}
|
||||
return NAT_D_V1;
|
||||
return PLV1_NAT_D;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -269,8 +269,8 @@ static void process_payloads(private_isakmp_natd_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) != NAT_D_V1 &&
|
||||
payload->get_type(payload) != NAT_D_DRAFT_00_03_V1)
|
||||
if (payload->get_type(payload) != PLV1_NAT_D &&
|
||||
payload->get_type(payload) != PLV1_NAT_D_DRAFT_00_03)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
@@ -334,7 +334,7 @@ METHOD(task_t, build_i, status_t,
|
||||
case ID_PROT:
|
||||
{ /* add NAT-D payloads to the second request, need to process
|
||||
* those by the responder contained in the second response */
|
||||
if (message->get_payload(message, SECURITY_ASSOCIATION_V1))
|
||||
if (message->get_payload(message, PLV1_SECURITY_ASSOCIATION))
|
||||
{ /* wait for the second exchange */
|
||||
return NEED_MORE;
|
||||
}
|
||||
@@ -362,7 +362,7 @@ METHOD(task_t, process_i, status_t,
|
||||
case ID_PROT:
|
||||
{ /* process NAT-D payloads in the second response, added them in the
|
||||
* second request already, so we're done afterwards */
|
||||
if (message->get_payload(message, SECURITY_ASSOCIATION_V1))
|
||||
if (message->get_payload(message, PLV1_SECURITY_ASSOCIATION))
|
||||
{ /* wait for the second exchange */
|
||||
return NEED_MORE;
|
||||
}
|
||||
@@ -407,7 +407,7 @@ METHOD(task_t, process_r, status_t,
|
||||
case ID_PROT:
|
||||
{ /* process NAT-D payloads in the second request, need to add ours
|
||||
* to the second response */
|
||||
if (message->get_payload(message, SECURITY_ASSOCIATION_V1))
|
||||
if (message->get_payload(message, PLV1_SECURITY_ASSOCIATION))
|
||||
{ /* wait for the second exchange */
|
||||
return NEED_MORE;
|
||||
}
|
||||
@@ -428,7 +428,7 @@ METHOD(task_t, build_r, status_t,
|
||||
case ID_PROT:
|
||||
{ /* add NAT-D payloads to second response, already processed those
|
||||
* contained in the second request */
|
||||
if (message->get_payload(message, SECURITY_ASSOCIATION_V1))
|
||||
if (message->get_payload(message, PLV1_SECURITY_ASSOCIATION))
|
||||
{ /* wait for the second exchange */
|
||||
return NEED_MORE;
|
||||
}
|
||||
|
||||
@@ -209,7 +209,7 @@ static void build(private_isakmp_vendor_t *this, message_t *message)
|
||||
(vendor_ids[i].extension == EXT_IKE_FRAGMENTATION && fragmentation))
|
||||
{
|
||||
DBG2(DBG_IKE, "sending %s vendor ID", vendor_ids[i].desc);
|
||||
vid_payload = vendor_id_payload_create_data(VENDOR_ID_V1,
|
||||
vid_payload = vendor_id_payload_create_data(PLV1_VENDOR_ID,
|
||||
chunk_clone(chunk_create(vendor_ids[i].id, vendor_ids[i].len)));
|
||||
message->add_payload(message, &vid_payload->payload_interface);
|
||||
}
|
||||
@@ -220,7 +220,7 @@ static void build(private_isakmp_vendor_t *this, message_t *message)
|
||||
this->best_natt_ext == i)
|
||||
{
|
||||
DBG2(DBG_IKE, "sending %s vendor ID", vendor_natt_ids[i].desc);
|
||||
vid_payload = vendor_id_payload_create_data(VENDOR_ID_V1,
|
||||
vid_payload = vendor_id_payload_create_data(PLV1_VENDOR_ID,
|
||||
chunk_clone(chunk_create(vendor_natt_ids[i].id,
|
||||
vendor_natt_ids[i].len)));
|
||||
message->add_payload(message, &vid_payload->payload_interface);
|
||||
@@ -240,7 +240,7 @@ static void process(private_isakmp_vendor_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == VENDOR_ID_V1)
|
||||
if (payload->get_type(payload) == PLV1_VENDOR_ID)
|
||||
{
|
||||
vendor_id_payload_t *vid;
|
||||
bool found = FALSE;
|
||||
|
||||
@@ -130,7 +130,7 @@ static bool has_notify_errors(private_main_mode_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == NOTIFY_V1)
|
||||
if (payload->get_type(payload) == PLV1_NOTIFY)
|
||||
{
|
||||
notify_payload_t *notify;
|
||||
notify_type_t type;
|
||||
@@ -176,7 +176,7 @@ static status_t send_notify(private_main_mode_t *this, notify_type_t type)
|
||||
u_int64_t spi_i, spi_r;
|
||||
chunk_t spi;
|
||||
|
||||
notify = notify_payload_create_from_protocol_and_type(NOTIFY_V1,
|
||||
notify = notify_payload_create_from_protocol_and_type(PLV1_NOTIFY,
|
||||
PROTO_IKE, type);
|
||||
ike_sa_id = this->ike_sa->get_id(this->ike_sa);
|
||||
spi_i = ike_sa_id->get_initiator_spi(ike_sa_id);
|
||||
@@ -302,7 +302,7 @@ METHOD(task_t, build_i, status_t,
|
||||
return send_notify(this, INVALID_ID_INFORMATION);
|
||||
}
|
||||
this->ike_sa->set_my_id(this->ike_sa, id->clone(id));
|
||||
id_payload = id_payload_create_from_identification(ID_V1, id);
|
||||
id_payload = id_payload_create_from_identification(PLV1_ID, id);
|
||||
message->add_payload(message, &id_payload->payload_interface);
|
||||
|
||||
if (!this->ph1->build_auth(this->ph1, this->method, message,
|
||||
@@ -340,7 +340,7 @@ METHOD(task_t, process_r, status_t,
|
||||
message->get_source(message), TRUE);
|
||||
|
||||
sa_payload = (sa_payload_t*)message->get_payload(message,
|
||||
SECURITY_ASSOCIATION_V1);
|
||||
PLV1_SECURITY_ASSOCIATION);
|
||||
if (!sa_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "SA payload missing");
|
||||
@@ -401,7 +401,7 @@ METHOD(task_t, process_r, status_t,
|
||||
id_payload_t *id_payload;
|
||||
identification_t *id;
|
||||
|
||||
id_payload = (id_payload_t*)message->get_payload(message, ID_V1);
|
||||
id_payload = (id_payload_t*)message->get_payload(message, PLV1_ID);
|
||||
if (!id_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "IDii payload missing");
|
||||
@@ -488,7 +488,7 @@ METHOD(task_t, build_r, status_t,
|
||||
}
|
||||
this->ike_sa->set_my_id(this->ike_sa, id->clone(id));
|
||||
|
||||
id_payload = id_payload_create_from_identification(ID_V1, id);
|
||||
id_payload = id_payload_create_from_identification(PLV1_ID, id);
|
||||
message->add_payload(message, &id_payload->payload_interface);
|
||||
|
||||
if (!this->ph1->build_auth(this->ph1, this->method, message,
|
||||
@@ -575,7 +575,7 @@ METHOD(task_t, process_i, status_t,
|
||||
bool private;
|
||||
|
||||
sa_payload = (sa_payload_t*)message->get_payload(message,
|
||||
SECURITY_ASSOCIATION_V1);
|
||||
PLV1_SECURITY_ASSOCIATION);
|
||||
if (!sa_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "SA payload missing");
|
||||
@@ -627,7 +627,7 @@ METHOD(task_t, process_i, status_t,
|
||||
id_payload_t *id_payload;
|
||||
identification_t *id, *cid;
|
||||
|
||||
id_payload = (id_payload_t*)message->get_payload(message, ID_V1);
|
||||
id_payload = (id_payload_t*)message->get_payload(message, PLV1_ID);
|
||||
if (!id_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "IDir payload missing");
|
||||
|
||||
@@ -107,7 +107,7 @@ static configuration_attribute_t *build_vip(host_t *vip)
|
||||
chunk = chunk_cata("cc", chunk, prefix);
|
||||
}
|
||||
}
|
||||
return configuration_attribute_create_chunk(CONFIGURATION_ATTRIBUTE_V1,
|
||||
return configuration_attribute_create_chunk(PLV1_CONFIGURATION_ATTRIBUTE,
|
||||
type, chunk);
|
||||
}
|
||||
|
||||
@@ -222,7 +222,7 @@ static void process_payloads(private_mode_config_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == CONFIGURATION_V1)
|
||||
if (payload->get_type(payload) == PLV1_CONFIGURATION)
|
||||
{
|
||||
cp_payload_t *cp = (cp_payload_t*)payload;
|
||||
configuration_attribute_t *ca;
|
||||
@@ -273,7 +273,7 @@ static void add_attribute(private_mode_config_t *this, cp_payload_t *cp,
|
||||
entry_t *entry;
|
||||
|
||||
cp->add_attribute(cp,
|
||||
configuration_attribute_create_chunk(CONFIGURATION_ATTRIBUTE_V1,
|
||||
configuration_attribute_create_chunk(PLV1_CONFIGURATION_ATTRIBUTE,
|
||||
type, data));
|
||||
INIT(entry,
|
||||
.type = type,
|
||||
@@ -296,7 +296,7 @@ static status_t build_request(private_mode_config_t *this, message_t *message)
|
||||
linked_list_t *vips;
|
||||
host_t *host;
|
||||
|
||||
cp = cp_payload_create_type(CONFIGURATION_V1, CFG_REQUEST);
|
||||
cp = cp_payload_create_type(PLV1_CONFIGURATION, CFG_REQUEST);
|
||||
|
||||
vips = linked_list_create();
|
||||
|
||||
@@ -360,7 +360,7 @@ static status_t build_set(private_mode_config_t *this, message_t *message)
|
||||
host_t *any4, *any6, *found;
|
||||
char *name;
|
||||
|
||||
cp = cp_payload_create_type(CONFIGURATION_V1, CFG_SET);
|
||||
cp = cp_payload_create_type(PLV1_CONFIGURATION, CFG_SET);
|
||||
|
||||
id = this->ike_sa->get_other_eap_id(this->ike_sa);
|
||||
config = this->ike_sa->get_peer_cfg(this->ike_sa);
|
||||
@@ -470,7 +470,7 @@ static status_t build_reply(private_mode_config_t *this, message_t *message)
|
||||
linked_list_t *vips, *pools;
|
||||
host_t *requested;
|
||||
|
||||
cp = cp_payload_create_type(CONFIGURATION_V1, CFG_REPLY);
|
||||
cp = cp_payload_create_type(PLV1_CONFIGURATION, CFG_REPLY);
|
||||
|
||||
id = this->ike_sa->get_other_eap_id(this->ike_sa);
|
||||
config = this->ike_sa->get_peer_cfg(this->ike_sa);
|
||||
@@ -511,7 +511,7 @@ static status_t build_reply(private_mode_config_t *this, message_t *message)
|
||||
while (enumerator->enumerate(enumerator, &type, &value))
|
||||
{
|
||||
cp->add_attribute(cp,
|
||||
configuration_attribute_create_chunk(CONFIGURATION_ATTRIBUTE_V1,
|
||||
configuration_attribute_create_chunk(PLV1_CONFIGURATION_ATTRIBUTE,
|
||||
type, value));
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
@@ -535,7 +535,7 @@ static status_t build_ack(private_mode_config_t *this, message_t *message)
|
||||
configuration_attribute_type_t type;
|
||||
entry_t *entry;
|
||||
|
||||
cp = cp_payload_create_type(CONFIGURATION_V1, CFG_ACK);
|
||||
cp = cp_payload_create_type(PLV1_CONFIGURATION, CFG_ACK);
|
||||
|
||||
/* return empty attributes for installed IPs */
|
||||
|
||||
@@ -552,7 +552,7 @@ static status_t build_ack(private_mode_config_t *this, message_t *message)
|
||||
type = INTERNAL_IP4_ADDRESS;
|
||||
}
|
||||
cp->add_attribute(cp, configuration_attribute_create_chunk(
|
||||
CONFIGURATION_ATTRIBUTE_V1, type, chunk_empty));
|
||||
PLV1_CONFIGURATION_ATTRIBUTE, type, chunk_empty));
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
|
||||
@@ -560,7 +560,7 @@ static status_t build_ack(private_mode_config_t *this, message_t *message)
|
||||
while (enumerator->enumerate(enumerator, &entry))
|
||||
{
|
||||
cp->add_attribute(cp,
|
||||
configuration_attribute_create_chunk(CONFIGURATION_ATTRIBUTE_V1,
|
||||
configuration_attribute_create_chunk(PLV1_CONFIGURATION_ATTRIBUTE,
|
||||
entry->type, chunk_empty));
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
|
||||
@@ -177,7 +177,7 @@ METHOD(task_t, build_i, status_t,
|
||||
DBG1(DBG_IKE, "sending DELETE for %N CHILD_SA with SPI %.8x",
|
||||
protocol_id_names, this->protocol, ntohl(this->spi));
|
||||
|
||||
delete_payload = delete_payload_create(DELETE_V1, this->protocol);
|
||||
delete_payload = delete_payload_create(PLV1_DELETE, this->protocol);
|
||||
delete_payload->add_spi(delete_payload, this->spi);
|
||||
message->add_payload(message, &delete_payload->payload_interface);
|
||||
|
||||
@@ -205,7 +205,7 @@ METHOD(task_t, process_r, status_t,
|
||||
payloads = message->create_payload_enumerator(message);
|
||||
while (payloads->enumerate(payloads, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == DELETE_V1)
|
||||
if (payload->get_type(payload) == PLV1_DELETE)
|
||||
{
|
||||
delete_payload = (delete_payload_t*)payload;
|
||||
protocol = delete_payload->get_protocol_id(delete_payload);
|
||||
|
||||
@@ -427,7 +427,7 @@ static bool add_nonce(private_quick_mode_t *this, chunk_t *nonce,
|
||||
}
|
||||
nonceg->destroy(nonceg);
|
||||
|
||||
nonce_payload = nonce_payload_create(NONCE_V1);
|
||||
nonce_payload = nonce_payload_create(PLV1_NONCE);
|
||||
nonce_payload->set_nonce(nonce_payload, *nonce);
|
||||
message->add_payload(message, &nonce_payload->payload_interface);
|
||||
|
||||
@@ -442,7 +442,7 @@ static bool get_nonce(private_quick_mode_t *this, chunk_t *nonce,
|
||||
{
|
||||
nonce_payload_t *nonce_payload;
|
||||
|
||||
nonce_payload = (nonce_payload_t*)message->get_payload(message, NONCE_V1);
|
||||
nonce_payload = (nonce_payload_t*)message->get_payload(message, PLV1_NONCE);
|
||||
if (!nonce_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "NONCE payload missing in message");
|
||||
@@ -460,7 +460,7 @@ static void add_ke(private_quick_mode_t *this, message_t *message)
|
||||
{
|
||||
ke_payload_t *ke_payload;
|
||||
|
||||
ke_payload = ke_payload_create_from_diffie_hellman(KEY_EXCHANGE_V1, this->dh);
|
||||
ke_payload = ke_payload_create_from_diffie_hellman(PLV1_KEY_EXCHANGE, this->dh);
|
||||
message->add_payload(message, &ke_payload->payload_interface);
|
||||
}
|
||||
|
||||
@@ -471,7 +471,7 @@ static bool get_ke(private_quick_mode_t *this, message_t *message)
|
||||
{
|
||||
ke_payload_t *ke_payload;
|
||||
|
||||
ke_payload = (ke_payload_t*)message->get_payload(message, KEY_EXCHANGE_V1);
|
||||
ke_payload = (ke_payload_t*)message->get_payload(message, PLV1_KEY_EXCHANGE);
|
||||
if (!ke_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "KE payload missing");
|
||||
@@ -537,7 +537,7 @@ static bool get_ts(private_quick_mode_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == ID_V1)
|
||||
if (payload->get_type(payload) == PLV1_ID)
|
||||
{
|
||||
id_payload = (id_payload_t*)payload;
|
||||
|
||||
@@ -640,9 +640,9 @@ static payload_type_t get_nat_oa_payload_type(ike_sa_t *ike_sa)
|
||||
{
|
||||
if (ike_sa->supports_extension(ike_sa, EXT_NATT_DRAFT_02_03))
|
||||
{
|
||||
return NAT_OA_DRAFT_00_03_V1;
|
||||
return PLV1_NAT_OA_DRAFT_00_03;
|
||||
}
|
||||
return NAT_OA_V1;
|
||||
return PLV1_NAT_OA;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -726,7 +726,7 @@ static status_t send_notify(private_quick_mode_t *this, notify_type_t type)
|
||||
{
|
||||
notify_payload_t *notify;
|
||||
|
||||
notify = notify_payload_create_from_protocol_and_type(NOTIFY_V1,
|
||||
notify = notify_payload_create_from_protocol_and_type(PLV1_NOTIFY,
|
||||
this->proto, type);
|
||||
notify->set_spi(notify, this->spi_i);
|
||||
|
||||
@@ -917,7 +917,7 @@ static bool has_notify_errors(private_quick_mode_t *this, message_t *message)
|
||||
enumerator = message->create_payload_enumerator(message);
|
||||
while (enumerator->enumerate(enumerator, &payload))
|
||||
{
|
||||
if (payload->get_type(payload) == NOTIFY_V1)
|
||||
if (payload->get_type(payload) == PLV1_NOTIFY)
|
||||
{
|
||||
notify_payload_t *notify;
|
||||
notify_type_t type;
|
||||
@@ -1000,7 +1000,7 @@ METHOD(task_t, process_r, status_t,
|
||||
bool private;
|
||||
|
||||
sa_payload = (sa_payload_t*)message->get_payload(message,
|
||||
SECURITY_ASSOCIATION_V1);
|
||||
PLV1_SECURITY_ASSOCIATION);
|
||||
if (!sa_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "sa payload missing");
|
||||
@@ -1215,7 +1215,7 @@ METHOD(task_t, process_i, status_t,
|
||||
bool private;
|
||||
|
||||
sa_payload = (sa_payload_t*)message->get_payload(message,
|
||||
SECURITY_ASSOCIATION_V1);
|
||||
PLV1_SECURITY_ASSOCIATION);
|
||||
if (!sa_payload)
|
||||
{
|
||||
DBG1(DBG_IKE, "sa payload missing");
|
||||
|
||||
@@ -277,7 +277,7 @@ METHOD(task_t, build_i_status, status_t,
|
||||
{
|
||||
cp_payload_t *cp;
|
||||
|
||||
cp = cp_payload_create_type(CONFIGURATION_V1, CFG_SET);
|
||||
cp = cp_payload_create_type(PLV1_CONFIGURATION, CFG_SET);
|
||||
cp->add_attribute(cp,
|
||||
configuration_attribute_create_value(XAUTH_STATUS, this->status));
|
||||
|
||||
@@ -291,7 +291,7 @@ METHOD(task_t, process_i_status, status_t,
|
||||
{
|
||||
cp_payload_t *cp;
|
||||
|
||||
cp = (cp_payload_t*)message->get_payload(message, CONFIGURATION_V1);
|
||||
cp = (cp_payload_t*)message->get_payload(message, PLV1_CONFIGURATION);
|
||||
if (!cp || cp->get_type(cp) != CFG_ACK)
|
||||
{
|
||||
DBG1(DBG_IKE, "received invalid XAUTH status response");
|
||||
@@ -354,11 +354,11 @@ METHOD(task_t, build_r_ack, status_t,
|
||||
{
|
||||
cp_payload_t *cp;
|
||||
|
||||
cp = cp_payload_create_type(CONFIGURATION_V1, CFG_ACK);
|
||||
cp = cp_payload_create_type(PLV1_CONFIGURATION, CFG_ACK);
|
||||
cp->set_identifier(cp, this->identifier);
|
||||
cp->add_attribute(cp,
|
||||
configuration_attribute_create_chunk(
|
||||
CONFIGURATION_ATTRIBUTE_V1, XAUTH_STATUS, chunk_empty));
|
||||
PLV1_CONFIGURATION_ATTRIBUTE, XAUTH_STATUS, chunk_empty));
|
||||
|
||||
message->add_payload(message, (payload_t *)cp);
|
||||
|
||||
@@ -382,7 +382,7 @@ METHOD(task_t, process_r, status_t,
|
||||
return NEED_MORE;
|
||||
}
|
||||
}
|
||||
cp = (cp_payload_t*)message->get_payload(message, CONFIGURATION_V1);
|
||||
cp = (cp_payload_t*)message->get_payload(message, PLV1_CONFIGURATION);
|
||||
if (!cp)
|
||||
{
|
||||
DBG1(DBG_IKE, "configuration payload missing in XAuth request");
|
||||
@@ -438,7 +438,7 @@ METHOD(task_t, build_r, status_t,
|
||||
{
|
||||
if (!this->cp)
|
||||
{ /* send empty reply if building data failed */
|
||||
this->cp = cp_payload_create_type(CONFIGURATION_V1, CFG_REPLY);
|
||||
this->cp = cp_payload_create_type(PLV1_CONFIGURATION, CFG_REPLY);
|
||||
}
|
||||
message->add_payload(message, (payload_t *)this->cp);
|
||||
this->cp = NULL;
|
||||
@@ -451,7 +451,7 @@ METHOD(task_t, process_i, status_t,
|
||||
identification_t *id;
|
||||
cp_payload_t *cp;
|
||||
|
||||
cp = (cp_payload_t*)message->get_payload(message, CONFIGURATION_V1);
|
||||
cp = (cp_payload_t*)message->get_payload(message, PLV1_CONFIGURATION);
|
||||
if (!cp)
|
||||
{
|
||||
DBG1(DBG_IKE, "configuration payload missing in XAuth response");
|
||||
|
||||
Reference in New Issue
Block a user