From 135822e11bfaa9b33a4893f00d0f12a97bf01d9f Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Thu, 8 Mar 2012 23:19:13 +0100 Subject: define peer and server identities --- src/libcharon/plugins/tnc_pdp/tnc_pdp.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/libcharon/plugins/tnc_pdp/tnc_pdp.c') diff --git a/src/libcharon/plugins/tnc_pdp/tnc_pdp.c b/src/libcharon/plugins/tnc_pdp/tnc_pdp.c index 6b0021dc2..52c52c503 100644 --- a/src/libcharon/plugins/tnc_pdp/tnc_pdp.c +++ b/src/libcharon/plugins/tnc_pdp/tnc_pdp.c @@ -227,9 +227,16 @@ static void process_eap(private_tnc_pdp_t *this, radius_message_t *request, if (eap_type == EAP_IDENTITY) { identification_t *server, *peer; + chunk_t eap_identity; + + if (message.len < 5) + { + return; + } + eap_identity = chunk_create(message.ptr + 5, message.len - 5); + peer = identification_create_from_data(eap_identity); + server = identification_create_from_string("%any"); - peer = identification_create_from_string("carol@strongswan.org"); - server = identification_create_from_string("server"); this->method = charon->eap->create_instance(charon->eap, EAP_MD5, 0, EAP_SERVER, server, peer); if (!this->method) -- cgit v1.2.3