diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-04-27 18:36:31 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-04-27 18:36:31 +0200 |
commit | 1a02682d0695509bb8255b2d10dee48c61d83c34 (patch) | |
tree | 02f9df75cdb4142a843d04c8727e917c77c20f7d /include | |
parent | 711789580dc6ee3a1a22b8fee63f5eff7e7dbb5e (diff) | |
download | ouroboros-1a02682d0695509bb8255b2d10dee48c61d83c34.tar.gz ouroboros-1a02682d0695509bb8255b2d10dee48c61d83c34.zip |
lib: client-side flow allocation
flow allocation now propagates on the client side up to the IPCP.
added UNKNOWN_AP and UNKNOWN_AE definitions to dev.h
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/dev.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/ouroboros/dev.h b/include/ouroboros/dev.h index b2507fbf..414273ef 100644 --- a/include/ouroboros/dev.h +++ b/include/ouroboros/dev.h @@ -25,6 +25,9 @@ #include <ouroboros/common.h> +#define UNKNOWN_AP "__UNKNOWN_AP__" +#define UNKNOWN_AE "__UNKNOWN_AE__" + /* Returns file descriptor */ int ap_reg(char * ap_name, char ** difs, size_t difs_size); int ap_unreg(char * ap_name, char ** difs, size_t difs_size); |