aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/sa/tasks/ike_p2p.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2008-02-27 20:30:39 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2008-02-27 20:30:39 +0000
commitb48bdac20bdd55df297ea575a5bd9c79bdf35f0d (patch)
tree8f185d5ed03590f9cc2802e8ed0ab502f15d45a8 /src/charon/sa/tasks/ike_p2p.c
parente633b1998fcafdc19d2b0630053af8227d704dfa (diff)
downloadstrongswan-b48bdac20bdd55df297ea575a5bd9c79bdf35f0d.tar.bz2
strongswan-b48bdac20bdd55df297ea575a5bd9c79bdf35f0d.tar.xz
improved P2P_NAT debugging
Diffstat (limited to 'src/charon/sa/tasks/ike_p2p.c')
-rw-r--r--src/charon/sa/tasks/ike_p2p.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/sa/tasks/ike_p2p.c b/src/charon/sa/tasks/ike_p2p.c
index 84b88e16b..6f632733a 100644
--- a/src/charon/sa/tasks/ike_p2p.c
+++ b/src/charon/sa/tasks/ike_p2p.c
@@ -229,14 +229,14 @@ static void process_payloads(private_ike_p2p_t *this, message_t *message)
{
chunk_free(&this->session_id);
this->session_id = chunk_clone(notify->get_notification_data(notify));
- DBG3(DBG_IKE, "received p2p_sessionid %B", &this->session_id);
+ DBG2(DBG_IKE, "received P2P_SESSIONID %#B", &this->session_id);
break;
}
case P2P_SESSIONKEY:
{
chunk_free(&this->session_key);
this->session_key = chunk_clone(notify->get_notification_data(notify));
- DBG4(DBG_IKE, "received p2p_sessionkey %B", &this->session_key);
+ DBG4(DBG_IKE, "received P2P_SESSIONKEY %#B", &this->session_key);
break;
}
case P2P_RESPONSE: