summaryrefslogtreecommitdiff
path: root/include/ouroboros/irm_config.h
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2017-02-06 16:05:44 +0100
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2017-02-06 20:04:34 +0100
commit373efaf24d3600fe4dadf6bfaaee8d19e2ec32d7 (patch)
tree8711a4edbc2a6defaab63f0dcc2b0690252307b4 /include/ouroboros/irm_config.h
parent4b11f952c521315883f64571e1790389e8d20f64 (diff)
downloadouroboros-373efaf24d3600fe4dadf6bfaaee8d19e2ec32d7.tar.gz
ouroboros-373efaf24d3600fe4dadf6bfaaee8d19e2ec32d7.zip
ipcpd, lib: Revise normal IPCP
This PR updates the normal IPCP to use the new RIB. The old ribmgr is removed and replaced by a stub that needs to be implemented. All components (dir, fmgr, frct) were adapted to the new RIB API. A lot of functionality was moved outside of the ribmgr, such as the addr_auth, which is now a component of the IPCP. The address is also stored to the ipcpi struct. The irm tool has an option to set the gam policy of the rib manager.
Diffstat (limited to 'include/ouroboros/irm_config.h')
-rw-r--r--include/ouroboros/irm_config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/ouroboros/irm_config.h b/include/ouroboros/irm_config.h
index c4a81c23..2be4273e 100644
--- a/include/ouroboros/irm_config.h
+++ b/include/ouroboros/irm_config.h
@@ -47,6 +47,10 @@ enum pol_gam {
COMPLETE = 0
};
+enum pol_cacep {
+ NO_AUTH = 0
+};
+
struct dif_config {
char * dif_name;
enum ipcp_type type;
@@ -57,7 +61,6 @@ struct dif_config {
uint8_t addr_size;
uint8_t cep_id_size;
uint8_t pdu_length_size;
- uint8_t qos_id_size;
uint8_t seqno_size;
bool has_ttl;
@@ -68,6 +71,7 @@ struct dif_config {
enum pol_addr_auth addr_auth_type;
enum pol_gam dt_gam_type;
+ enum pol_gam rm_gam_type;
};
/* Shim UDP */
struct {