]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
fixed some more misspellings
authorAndreas Steffen <andreas.steffen@strongswan.org>
Wed, 20 Jul 2011 20:19:01 +0000 (22:19 +0200)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Wed, 20 Jul 2011 20:19:01 +0000 (22:19 +0200)
doc/architecture.h
src/libcharon/sa/ike_sa_id.h
src/libstrongswan/plugins/hmac/hmac.h

index 47d8202c2a768a3f9fd9134e8d9546f0b186b56b..a95bffae9593ae2956573933286f79c5a10d45a6 100644 (file)
@@ -47,10 +47,10 @@ Since IKEv2 uses the same port as IKEv1, both daemons must listen to UDP port
 500. Under Linux, there is no clean way to set up two sockets at the same port.
 To reslove this problem, charon uses a RAW socket, as they are used in network
 sniffers. An installed Linux Socket Filter (LSF) filters out all none-IKEv2
-traffic. Pluto receives any IKE message, independent of charons behavior.
+traffic. Pluto receives any IKE message, independent of charon's behavior.
 Therefore plutos behavior is changed to discard any IKEv2 traffic silently.
 
 To gain some reusability of the code, generic crypto and utility functions are 
 separeted in a shared library, libstrongswan.
 
-*/
\ No newline at end of file
+*/
index 065c2a897c5660cfce99ffc81ae6bbf6bf4cac33..fb55359bc642f2c55af926f5c6f4f015c31b3ec9 100644 (file)
@@ -30,7 +30,7 @@ typedef struct ike_sa_id_t ike_sa_id_t;
  * An object of type ike_sa_id_t is used to identify an IKE_SA.
  *
  * An IKE_SA is identified by its initiator and responder spi's.
- * Additionally it contains the role of the actual running IKEv2-Daemon
+ * Additionally it contains the role of the actual running IKEv2 daemon
  * for the specific IKE_SA (original initiator or responder).
  */
 struct ike_sa_id_t {
@@ -88,14 +88,14 @@ struct ike_sa_id_t {
        /**
         * Get the initiator flag.
         *
-        * @return                                      TRUE if we are the original initator
+        * @return                                      TRUE if we are the original initiator
         */
        bool (*is_initiator) (ike_sa_id_t *this);
 
        /**
         * Switche the original initiator flag.
         *
-        * @return                                      TRUE if we are the original initator after switch, FALSE otherwise
+        * @return                                      TRUE if we are the original initiator after switch, FALSE otherwise
         */
        bool (*switch_initiator) (ike_sa_id_t *this);
 
index 4e53ddf1f46529adaf7c52909bb86661459d4a62..1ed041596a6d0da09613cb7b9c01cfcdaea7e16e 100644 (file)
@@ -29,7 +29,7 @@ typedef struct hmac_t hmac_t;
 /**
  * Message authentication using hash functions.
  *
- * This class implements the message authenticaion algorithm
+ * This class implements the message authentication algorithm
  * described in RFC2104. It uses a hash function, which must
  * be implemented as a hasher_t class.
  */