diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-02 12:38:55 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-02 12:38:55 +0000 |
commit | ccf783d29dba58e8e6aef211b8d050670b1d55ac (patch) | |
tree | a252d58ead4e682c0bb915dc09bc12c9f21565d6 /Source/charon/sa/ike_sa.h | |
parent | ae3012a0ea0e06e29212f1967b5b71e90460fb43 (diff) | |
download | strongswan-ccf783d29dba58e8e6aef211b8d050670b1d55ac.tar.bz2 strongswan-ccf783d29dba58e8e6aef211b8d050670b1d55ac.tar.xz |
- state ike_sa_init_responded implemented (has some memleaks)
Diffstat (limited to 'Source/charon/sa/ike_sa.h')
-rw-r--r-- | Source/charon/sa/ike_sa.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/charon/sa/ike_sa.h b/Source/charon/sa/ike_sa.h index 6fd6f0e8d..806fd6581 100644 --- a/Source/charon/sa/ike_sa.h +++ b/Source/charon/sa/ike_sa.h @@ -282,6 +282,22 @@ struct protected_ike_sa_t { * @return pointer to signer_t object */ signer_t *(*get_signer_initiator) (protected_ike_sa_t *this); + + /** + * Gets the internal stored responder crypter_t object. + * + * @param this calling object + * @return pointer to crypter_t object + */ + crypter_t *(*get_crypter_responder) (protected_ike_sa_t *this); + + /** + * Gets the internal stored responder signer object. + * + * @param this calling object + * @return pointer to signer_t object + */ + signer_t *(*get_signer_responder) (protected_ike_sa_t *this); /** * Resets message id counters and does destroy stored received and sent messages. |