diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-21 15:26:04 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-21 15:30:33 +0100 |
commit | 933a7b93a679b994214c49540d891a901c7d5458 (patch) | |
tree | 23ebcbec3857b3322a9b6cb6f36463ae4157ee15 /src/ipcpd/normal/fmgr.h | |
parent | 3bb7ed41f8c96a15f16281f3c9f282e6690aed38 (diff) | |
download | ouroboros-933a7b93a679b994214c49540d891a901c7d5458.tar.gz ouroboros-933a7b93a679b994214c49540d891a901c7d5458.zip |
ipcpd: normal: Split fmgr init into init and start
This split the initialization of the flow manager into an init part
and a start part. This avoids the usage of data structures that have
not been properly initialized yet.
Diffstat (limited to 'src/ipcpd/normal/fmgr.h')
-rw-r--r-- | src/ipcpd/normal/fmgr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ipcpd/normal/fmgr.h b/src/ipcpd/normal/fmgr.h index f5076eab..b4d0b65a 100644 --- a/src/ipcpd/normal/fmgr.h +++ b/src/ipcpd/normal/fmgr.h @@ -33,6 +33,10 @@ int fmgr_init(void); void fmgr_fini(void); +int fmgr_start(void); + +void fmgr_stop(void); + int fmgr_np1_alloc(int fd, char * dst_ap_name, qoscube_t qos); |