typos: initator->initiator, authenticaion->authentication.

This commit is contained in:
Tobias Brunner 2011-08-15 16:31:04 +02:00
parent 19e12db79c
commit 7ebf021d37
10 changed files with 10 additions and 10 deletions

View File

@ -79,7 +79,7 @@ enum payload_type_t{
AUTHENTICATION = 39,
/**
* Nonces, for initator and responder (Ni, Nr, N)
* Nonces, for initiator and responder (Ni, Nr, N)
*/
NONCE = 40,

View File

@ -815,7 +815,7 @@ METHOD(child_sa_t, update, status_t,
if (!transport_proxy_mode)
{
/* update our (initator) SA */
/* update our (initiator) SA */
if (this->my_spi)
{
if (hydra->kernel_interface->update_sa(hydra->kernel_interface,

View File

@ -49,7 +49,7 @@ struct ike_auth_t {
* Create a new task of type IKE_AUTHENTICATE.
*
* @param ike_sa IKE_SA this task works for
* @param initiator TRUE if thask is the initator of an exchange
* @param initiator TRUE if thask is the initiator of an exchange
* @return ike_auth task to handle by the task_manager
*/
ike_auth_t *ike_auth_create(ike_sa_t *ike_sa, bool initiator);

View File

@ -45,7 +45,7 @@ struct ike_cert_post_t {
* of the certificate request.
*
* @param ike_sa IKE_SA this task works for
* @param initiator TRUE if thask is the original initator
* @param initiator TRUE if thask is the original initiator
* @return ike_cert_post task to handle by the task_manager
*/
ike_cert_post_t *ike_cert_post_create(ike_sa_t *ike_sa, bool initiator);

View File

@ -45,7 +45,7 @@ struct ike_cert_pre_t {
* of the certificate request.
*
* @param ike_sa IKE_SA this task works for
* @param initiator TRUE if thask is the original initator
* @param initiator TRUE if thask is the original initiator
* @return ike_cert_pre task to handle by the task_manager
*/
ike_cert_pre_t *ike_cert_pre_create(ike_sa_t *ike_sa, bool initiator);

View File

@ -43,7 +43,7 @@ struct ike_dpd_t {
/**
* Create a new ike_dpd task.
*
* @param initiator TRUE if thask is the original initator
* @param initiator TRUE if thask is the original initiator
* @return ike_dpd task to handle by the task_manager
*/
ike_dpd_t *ike_dpd_create(bool initiator);

View File

@ -51,7 +51,7 @@ struct ike_init_t {
* Create a new IKE_INIT task.
*
* @param ike_sa IKE_SA this task works for (new one when rekeying)
* @param initiator TRUE if thask is the original initator
* @param initiator TRUE if thask is the original initiator
* @param old_sa old IKE_SA when we are rekeying
* @return ike_init task to handle by the task_manager
*/

View File

@ -51,7 +51,7 @@ struct ike_natd_t {
* Create a new ike_natd task.
*
* @param ike_sa IKE_SA this task works for
* @param initiator TRUE if thask is the original initator
* @param initiator TRUE if thask is the original initiator
* @return ike_natd task to handle by the task_manager
*/
ike_natd_t *ike_natd_create(ike_sa_t *ike_sa, bool initiator);

View File

@ -42,7 +42,7 @@ struct ike_vendor_t {
* Create a ike_vendor instance.
*
* @param ike_sa IKE_SA this task works for
* @param initiator TRUE if thask is the original initator
* @param initiator TRUE if thask is the original initiator
*/
ike_vendor_t *ike_vendor_create(ike_sa_t *ike_sa, bool initiator);

View File

@ -28,7 +28,7 @@ typedef struct xcbc_t xcbc_t;
/**
* Message authentication using CBC crypter.
*
* This class implements the message authenticaion algorithm
* This class implements the message authentication algorithm
* described in RFC3566.
*/
struct xcbc_t {