diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-04-19 09:34:36 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-04-19 09:34:36 +0200 |
commit | 8ebd13849c5e0db613763f3dd27220bacdb1f1e8 (patch) | |
tree | 0eb133f41be30e55e13de46439e5865b84ea8541 /src/ipcpd/ipcp-ops.h | |
parent | 21b304b46a347772c1338b22fba6a15291bb2945 (diff) | |
download | ouroboros-8ebd13849c5e0db613763f3dd27220bacdb1f1e8.tar.gz ouroboros-8ebd13849c5e0db613763f3dd27220bacdb1f1e8.zip |
ipcpd: alignment fixes in ipcp-ops.h
Diffstat (limited to 'src/ipcpd/ipcp-ops.h')
-rw-r--r-- | src/ipcpd/ipcp-ops.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ipcpd/ipcp-ops.h b/src/ipcpd/ipcp-ops.h index 69682739..2490e25c 100644 --- a/src/ipcpd/ipcp-ops.h +++ b/src/ipcpd/ipcp-ops.h @@ -39,18 +39,18 @@ struct ipcp_ops { int (* ipcp_ap_reg)(char * ap_name, uint32_t reg_ap_id); int (* ipcp_ap_unreg)(uint32_t reg_ap_id); - int (* ipcp_flow_alloc)(uint32_t port_id, - char * dst_ap_name, - char * src_ap_name, - char * src_ae_name, + int (* ipcp_flow_alloc)(uint32_t port_id, + 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, - int result); + int respnse); int (* ipcp_flow_dealloc)(uint32_t port_id); /* FIXME: let's see how this will work with the shm_du_map */ int (* ipcp_du_write)(uint32_t port_id, - size_t map_index); + size_t map_index); int (* ipcp_du_read)(uint32_t port_id, size_t map_index); |