diff options
author | Tobias Brunner <tobias@strongswan.org> | 2008-03-26 18:40:19 +0000 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2008-03-26 18:40:19 +0000 |
commit | dc04b7c743fe6718bd361f13adbbe5436c481486 (patch) | |
tree | 6e1f3550847a19bebac26609d28cc8858b10c432 /src/starter/starterstroke.c | |
parent | 685232670aa717850f304a5299781520405a419d (diff) | |
download | strongswan-dc04b7c743fe6718bd361f13adbbe5436c481486.tar.bz2 strongswan-dc04b7c743fe6718bd361f13adbbe5436c481486.tar.xz |
mediation extension adapted to the naming convention of the current version of the draft. note: the external interface (config, autotools) has not yet been changed
Diffstat (limited to 'src/starter/starterstroke.c')
-rw-r--r-- | src/starter/starterstroke.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/starter/starterstroke.c b/src/starter/starterstroke.c index 0ce0937b2..83db1430c 100644 --- a/src/starter/starterstroke.c +++ b/src/starter/starterstroke.c @@ -237,9 +237,9 @@ int starter_stroke_add_conn(starter_config_t *cfg, starter_conn_t *conn) msg.add_conn.algorithms.esp = push_string(&msg, conn->esp); msg.add_conn.dpd.delay = conn->dpd_delay; msg.add_conn.dpd.action = conn->dpd_action; - msg.add_conn.p2p.mediation = conn->p2p_mediation; - msg.add_conn.p2p.mediated_by = push_string(&msg, conn->p2p_mediated_by); - msg.add_conn.p2p.peerid = push_string(&msg, conn->p2p_peerid); + msg.add_conn.ikeme.mediation = conn->me_mediation; + msg.add_conn.ikeme.mediated_by = push_string(&msg, conn->me_mediated_by); + msg.add_conn.ikeme.peerid = push_string(&msg, conn->me_peerid); starter_stroke_add_end(&msg, &msg.add_conn.me, &conn->left); starter_stroke_add_end(&msg, &msg.add_conn.other, &conn->right); |