diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-12-27 16:44:31 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-12-27 16:44:31 +0100 |
commit | 7a286471720aca037ea001f052630c16044198ee (patch) | |
tree | 1d94bf3a51b494f7b17cc94d086a23d7726ac3cd /src/ipcpd/normal/fmgr.h | |
parent | 5ae1fb3db5bf11ee2159b8461cdf1e54a2a0ef45 (diff) | |
download | ouroboros-7a286471720aca037ea001f052630c16044198ee.tar.gz ouroboros-7a286471720aca037ea001f052630c16044198ee.zip |
ipcpd: Use qoscube_t instead of enum qos_cube
Diffstat (limited to 'src/ipcpd/normal/fmgr.h')
-rw-r--r-- | src/ipcpd/normal/fmgr.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ipcpd/normal/fmgr.h b/src/ipcpd/normal/fmgr.h index 30267666..e17f3f55 100644 --- a/src/ipcpd/normal/fmgr.h +++ b/src/ipcpd/normal/fmgr.h @@ -37,10 +37,10 @@ int fmgr_init(void); int fmgr_fini(void); -int fmgr_np1_alloc(int fd, - char * dst_ap_name, - char * src_ae_name, - enum qos_cube qos); +int fmgr_np1_alloc(int fd, + char * dst_ap_name, + char * src_ae_name, + qoscube_t qos); int fmgr_np1_alloc_resp(int fd, int response); @@ -55,8 +55,8 @@ int fmgr_np1_post_sdu(cep_id_t id, int fmgr_nm1_mgmt_flow(char * dst_name); -int fmgr_nm1_dt_flow(char * dst_name, - enum qos_cube qos); +int fmgr_nm1_dt_flow(char * dst_name, + qoscube_t qos); int fmgr_nm1_write_sdu(struct pci * pci, struct shm_du_buff * sdb); |