diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/ipcp.h | 6 | ||||
-rw-r--r-- | include/ouroboros/irm.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/ouroboros/ipcp.h b/include/ouroboros/ipcp.h index 11e2699b..b9f6b1ff 100644 --- a/include/ouroboros/ipcp.h +++ b/include/ouroboros/ipcp.h @@ -35,7 +35,7 @@ */ enum ipcp_type { IPCP_LOCAL = 0, - IPCP_NORMAL, + IPCP_UNICAST, IPCP_BROADCAST, IPCP_RAPTOR, IPCP_ETH_LLC, @@ -44,7 +44,7 @@ enum ipcp_type { IPCP_INVALID }; -/* Normal IPCP policies */ +/* Unicast IPCP policies */ enum pol_addr_auth { ADDR_AUTH_FLAT_RANDOM = 0 }; @@ -78,7 +78,7 @@ struct ipcp_config { enum ipcp_type type; - /* Normal */ + /* Unicast */ uint8_t addr_size; uint8_t eid_size; uint8_t max_ttl; diff --git a/include/ouroboros/irm.h b/include/ouroboros/irm.h index 0b538b40..320ad06a 100644 --- a/include/ouroboros/irm.h +++ b/include/ouroboros/irm.h @@ -29,7 +29,7 @@ #include <sys/types.h> -/* Normal IPCP components. */ +/* Unicast IPCP components. */ #define DT_COMP "Data Transfer" #define MGMT_COMP "Management" |