diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-08-24 00:47:06 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-08-24 00:47:06 +0200 |
commit | f32db895e62152e1518fc5e184d19743d35e6cad (patch) | |
tree | b32afcf153f4e6ac5880b5a986c3d6526d6d70c2 /src/ipcpd/normal/flow_alloc.proto | |
parent | d8744f9b77a98183ca4ecc6e0be5ce9a6e92ede0 (diff) | |
parent | bb0a01dbb52cb0a02ce684b6fef3ec85e6c1918a (diff) | |
download | ouroboros-f32db895e62152e1518fc5e184d19743d35e6cad.tar.gz ouroboros-f32db895e62152e1518fc5e184d19743d35e6cad.zip |
Merged in sandervrijders/ouroboros/be-normal-flow-alloc (pull request #219)
ipcpd: normal: Add initial steps for N+1 flow allocation
Diffstat (limited to 'src/ipcpd/normal/flow_alloc.proto')
-rw-r--r-- | src/ipcpd/normal/flow_alloc.proto | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ipcpd/normal/flow_alloc.proto b/src/ipcpd/normal/flow_alloc.proto new file mode 100644 index 00000000..b1ca7cb8 --- /dev/null +++ b/src/ipcpd/normal/flow_alloc.proto @@ -0,0 +1,13 @@ +enum flow_alloc_code { + FLOW_REQ = 1; + FLOW_REPLY = 2; + FLOW_DEALLOC = 3; +}; + +message flow_alloc_msg { + required flow_alloc_code code = 1; + optional string dst_name = 2; + optional string src_ae_name = 3; + optional uint32 qos_cube = 4; + optional sint32 response = 5; +}; |