diff options
author | Sander Vrijders <[email protected]> | 2017-09-27 17:24:59 +0200 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2017-09-29 15:12:36 +0200 |
commit | 39c7f82f4714f8515860d1c0e2726bff29e22944 (patch) | |
tree | bc3808da222d245ab0aecf9d73e22eed5bfb6fd7 /src/ipcpd/normal/connmgr.h | |
parent | e3dba5812b1422a79e6e77ce9f923bade5a480e4 (diff) | |
download | ouroboros-39c7f82f4714f8515860d1c0e2726bff29e22944.tar.gz ouroboros-39c7f82f4714f8515860d1c0e2726bff29e22944.zip |
ipcpd: normal: React to flow events in link state policy
This will let the link state policy react to flow up and down events
by notifying the PFFs of the routing instances of this event so they
can take an appropriate action.
Diffstat (limited to 'src/ipcpd/normal/connmgr.h')
-rw-r--r-- | src/ipcpd/normal/connmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipcpd/normal/connmgr.h b/src/ipcpd/normal/connmgr.h index a8edee7d..2ad5316d 100644 --- a/src/ipcpd/normal/connmgr.h +++ b/src/ipcpd/normal/connmgr.h @@ -31,11 +31,11 @@ #define NOTIFY_DT_CONN_ADD 0x00D0 #define NOTIFY_DT_CONN_DEL 0x00D1 #define NOTIFY_DT_CONN_QOS 0x00D2 -#define NOTIFY_DT_CONN_DOWN 0x00D3 +#define NOTIFY_DT_CONN_UP 0x00D3 +#define NOTIFY_DT_CONN_DOWN 0x00D4 #define NOTIFY_MGMT_CONN_ADD 0x00F0 #define NOTIFY_MGMT_CONN_DEL 0x00F1 -#define NOTIFY_MGMT_CONN_DOWN 0x00F2 int connmgr_init(void); |