summaryrefslogtreecommitdiff
path: root/src/ipcpd/ipcp-ops.h
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-05-08 17:06:42 +0200
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-05-08 17:06:42 +0200
commit4e80e06772a0896dcb0f9f6fa2e455e7542eac24 (patch)
tree924156d142bce5521757e9349fa0b3fd2ff1b0cc /src/ipcpd/ipcp-ops.h
parent5812dfb832e513dc455a0d48624bcad62334d457 (diff)
parent4e13c71204e9667cfc4b7da6491972f854d9402d (diff)
downloadouroboros-4e80e06772a0896dcb0f9f6fa2e455e7542eac24.tar.gz
ouroboros-4e80e06772a0896dcb0f9f6fa2e455e7542eac24.zip
Merged in dstaesse/ouroboros/be-fast-path (pull request #66)
lib: changed port_id to int
Diffstat (limited to 'src/ipcpd/ipcp-ops.h')
-rw-r--r--src/ipcpd/ipcp-ops.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ipcpd/ipcp-ops.h b/src/ipcpd/ipcp-ops.h
index 91b6cac9..5e90939d 100644
--- a/src/ipcpd/ipcp-ops.h
+++ b/src/ipcpd/ipcp-ops.h
@@ -33,21 +33,21 @@ struct ipcp_ops {
int (* ipcp_enroll)(char * member_name,
char * n_1_dif);
int (* ipcp_reg)(char ** dif_names,
- size_t len);
+ size_t len);
int (* ipcp_unreg)(char ** dif_names,
- size_t len);
+ size_t len);
int (* ipcp_name_reg)(char * name);
int (* ipcp_name_unreg)(char * name);
- int (* ipcp_flow_alloc)(uint32_t port_id,
- pid_t n_pid,
- char * dst_ap_name,
- char * src_ap_name,
- char * src_ae_name,
+ int (* ipcp_flow_alloc)(int port_id,
+ pid_t n_pid,
+ char * dst_ap_name,
+ char * src_ap_name,
+ char * src_ae_name,
struct qos_spec * qos);
- int (* ipcp_flow_alloc_resp)(uint32_t port_id,
- pid_t n_pid,
- int response);
- int (* ipcp_flow_dealloc)(uint32_t port_id);
+ int (* ipcp_flow_alloc_resp)(int port_id,
+ pid_t n_pid,
+ int response);
+ int (* ipcp_flow_dealloc)(int port_id);
};
#endif /* IPCPD_IPCP_OPS_H */