diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
commit | 5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch) | |
tree | 4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/sa/states/responder_init.c | |
parent | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff) | |
download | strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2 strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz |
- typedefs changed
Diffstat (limited to 'Source/charon/sa/states/responder_init.c')
-rw-r--r-- | Source/charon/sa/states/responder_init.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/charon/sa/states/responder_init.c b/Source/charon/sa/states/responder_init.c index c44cd4f00..885e0d7f4 100644 --- a/Source/charon/sa/states/responder_init.c +++ b/Source/charon/sa/states/responder_init.c @@ -31,12 +31,14 @@ #include <encoding/payloads/nonce_payload.h> #include <transforms/diffie_hellman.h> + +typedef struct private_responder_init_t private_responder_init_t; + /** * Private data of a responder_init_t object. * */ -typedef struct private_responder_init_s private_responder_init_t; -struct private_responder_init_s { +struct private_responder_init_t { /** * Methods of the state_t interface. */ |