summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2019-07-25 12:50:46 +0200
committerSander Vrijders <sander@ouroboros.rocks>2019-07-29 19:36:45 +0200
commitdae15c284248d49079ad5f8a3d8ff30e217f419e (patch)
treeea7942e940396c0c78304fef8b43fb25c5aebba8 /include
parentc9232acef855b51d1bc199a68c03c0695ac11192 (diff)
downloadouroboros-dae15c284248d49079ad5f8a3d8ff30e217f419e.tar.gz
ouroboros-dae15c284248d49079ad5f8a3d8ff30e217f419e.zip
build: Refactor normal to unicast
This completes the renaming of the normal IPCP to the unicast IPCP in the sources, to get everything consistent with the documentation. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'include')
-rw-r--r--include/ouroboros/ipcp.h6
-rw-r--r--include/ouroboros/irm.h2
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"