diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-07 21:52:29 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-07 21:52:29 +0200 |
commit | 00dba20de7462c07866d321597697456a0ae8555 (patch) | |
tree | 36936ba283d5567c4c2533c1e56675290ff5fc67 /include | |
parent | cc377e56c6fd25403fc7ccf5f83c82e3d85a767b (diff) | |
parent | 27b36b690a4b048721f0a568ef0aff03bf8e9855 (diff) | |
download | ouroboros-00dba20de7462c07866d321597697456a0ae8555.tar.gz ouroboros-00dba20de7462c07866d321597697456a0ae8555.zip |
Merged in dstaesse/ouroboros/be-ipcp-priority (pull request #166)
irmd: Prioritize local ipcp for local flows
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/dif_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ouroboros/dif_config.h b/include/ouroboros/dif_config.h index 20e86cd1..c365800c 100644 --- a/include/ouroboros/dif_config.h +++ b/include/ouroboros/dif_config.h @@ -27,8 +27,8 @@ #define OUROBOROS_DIF_CONFIG_H enum ipcp_type { - IPCP_NORMAL = 0, - IPCP_LOCAL, + IPCP_LOCAL = 0, + IPCP_NORMAL, IPCP_SHIM_UDP, IPCP_SHIM_ETH_LLC }; |