diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 14:22:29 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 14:22:29 +0000 |
commit | bdb141cb4b7bffcdd6358b0fd4606d146816261a (patch) | |
tree | f199e7afa93f1c146af5aa59a59b285609e68d39 /Source/charon/sa/states/responder_init.c | |
parent | 49a72ce3943adcf87a080a734adcdecb8efca5ed (diff) | |
download | strongswan-bdb141cb4b7bffcdd6358b0fd4606d146816261a.tar.bz2 strongswan-bdb141cb4b7bffcdd6358b0fd4606d146816261a.tar.xz |
- moved linked_list_iterator_t to iterator_t, located in iterator.h
Diffstat (limited to 'Source/charon/sa/states/responder_init.c')
-rw-r--r-- | Source/charon/sa/states/responder_init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/sa/states/responder_init.c b/Source/charon/sa/states/responder_init.c index 885e0d7f4..ffb010f67 100644 --- a/Source/charon/sa/states/responder_init.c +++ b/Source/charon/sa/states/responder_init.c @@ -144,7 +144,7 @@ struct private_responder_init_t { */ static status_t process_message(private_responder_init_t *this, message_t *message, state_t **new_state) { - linked_list_iterator_t *payloads; + iterator_t *payloads; host_t *source, *destination; status_t status; message_t *response; @@ -204,7 +204,7 @@ static status_t process_message(private_responder_init_t *this, message_t *messa case SECURITY_ASSOCIATION: { sa_payload_t *sa_payload = (sa_payload_t*)payload; - linked_list_iterator_t *suggested_proposals, *accepted_proposals; + iterator_t *suggested_proposals, *accepted_proposals; encryption_algorithm_t encryption_algorithm = ENCR_UNDEFINED; pseudo_random_function_t pseudo_random_function = PRF_UNDEFINED; integrity_algorithm_t integrity_algorithm = AUTH_UNDEFINED; @@ -490,7 +490,7 @@ static status_t process_message(private_responder_init_t *this, message_t *messa static status_t build_sa_payload(private_responder_init_t *this, payload_t **payload) { sa_payload_t* sa_payload; - linked_list_iterator_t *proposal_iterator; + iterator_t *proposal_iterator; status_t status; |