mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-18 00:00:22 -04:00
typos: initator->initiator, authenticaion->authentication.
This commit is contained in:
parent
19e12db79c
commit
7ebf021d37
@ -79,7 +79,7 @@ enum payload_type_t{
|
|||||||
AUTHENTICATION = 39,
|
AUTHENTICATION = 39,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Nonces, for initator and responder (Ni, Nr, N)
|
* Nonces, for initiator and responder (Ni, Nr, N)
|
||||||
*/
|
*/
|
||||||
NONCE = 40,
|
NONCE = 40,
|
||||||
|
|
||||||
|
@ -815,7 +815,7 @@ METHOD(child_sa_t, update, status_t,
|
|||||||
|
|
||||||
if (!transport_proxy_mode)
|
if (!transport_proxy_mode)
|
||||||
{
|
{
|
||||||
/* update our (initator) SA */
|
/* update our (initiator) SA */
|
||||||
if (this->my_spi)
|
if (this->my_spi)
|
||||||
{
|
{
|
||||||
if (hydra->kernel_interface->update_sa(hydra->kernel_interface,
|
if (hydra->kernel_interface->update_sa(hydra->kernel_interface,
|
||||||
|
@ -49,7 +49,7 @@ struct ike_auth_t {
|
|||||||
* Create a new task of type IKE_AUTHENTICATE.
|
* Create a new task of type IKE_AUTHENTICATE.
|
||||||
*
|
*
|
||||||
* @param ike_sa IKE_SA this task works for
|
* @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
|
* @return ike_auth task to handle by the task_manager
|
||||||
*/
|
*/
|
||||||
ike_auth_t *ike_auth_create(ike_sa_t *ike_sa, bool initiator);
|
ike_auth_t *ike_auth_create(ike_sa_t *ike_sa, bool initiator);
|
||||||
|
@ -45,7 +45,7 @@ struct ike_cert_post_t {
|
|||||||
* of the certificate request.
|
* of the certificate request.
|
||||||
*
|
*
|
||||||
* @param ike_sa IKE_SA this task works for
|
* @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
|
* @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);
|
ike_cert_post_t *ike_cert_post_create(ike_sa_t *ike_sa, bool initiator);
|
||||||
|
@ -45,7 +45,7 @@ struct ike_cert_pre_t {
|
|||||||
* of the certificate request.
|
* of the certificate request.
|
||||||
*
|
*
|
||||||
* @param ike_sa IKE_SA this task works for
|
* @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
|
* @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);
|
ike_cert_pre_t *ike_cert_pre_create(ike_sa_t *ike_sa, bool initiator);
|
||||||
|
@ -43,7 +43,7 @@ struct ike_dpd_t {
|
|||||||
/**
|
/**
|
||||||
* Create a new ike_dpd task.
|
* 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
|
* @return ike_dpd task to handle by the task_manager
|
||||||
*/
|
*/
|
||||||
ike_dpd_t *ike_dpd_create(bool initiator);
|
ike_dpd_t *ike_dpd_create(bool initiator);
|
||||||
|
@ -51,7 +51,7 @@ struct ike_init_t {
|
|||||||
* Create a new IKE_INIT task.
|
* Create a new IKE_INIT task.
|
||||||
*
|
*
|
||||||
* @param ike_sa IKE_SA this task works for (new one when rekeying)
|
* @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
|
* @param old_sa old IKE_SA when we are rekeying
|
||||||
* @return ike_init task to handle by the task_manager
|
* @return ike_init task to handle by the task_manager
|
||||||
*/
|
*/
|
||||||
|
@ -51,7 +51,7 @@ struct ike_natd_t {
|
|||||||
* Create a new ike_natd task.
|
* Create a new ike_natd task.
|
||||||
*
|
*
|
||||||
* @param ike_sa IKE_SA this task works for
|
* @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
|
* @return ike_natd task to handle by the task_manager
|
||||||
*/
|
*/
|
||||||
ike_natd_t *ike_natd_create(ike_sa_t *ike_sa, bool initiator);
|
ike_natd_t *ike_natd_create(ike_sa_t *ike_sa, bool initiator);
|
||||||
|
@ -42,7 +42,7 @@ struct ike_vendor_t {
|
|||||||
* Create a ike_vendor instance.
|
* Create a ike_vendor instance.
|
||||||
*
|
*
|
||||||
* @param ike_sa IKE_SA this task works for
|
* @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);
|
ike_vendor_t *ike_vendor_create(ike_sa_t *ike_sa, bool initiator);
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ typedef struct xcbc_t xcbc_t;
|
|||||||
/**
|
/**
|
||||||
* Message authentication using CBC crypter.
|
* Message authentication using CBC crypter.
|
||||||
*
|
*
|
||||||
* This class implements the message authenticaion algorithm
|
* This class implements the message authentication algorithm
|
||||||
* described in RFC3566.
|
* described in RFC3566.
|
||||||
*/
|
*/
|
||||||
struct xcbc_t {
|
struct xcbc_t {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user