diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-28 11:51:59 +0000 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-28 11:51:59 +0000 |
commit | 256d83081b93f39ad2e3f945b8b3d00e50c48972 (patch) | |
tree | 414549053101f95fb0985fb68a7f3b9ea9bb18e5 /src/ipcpd/normal/flow_alloc.proto | |
parent | 4f9f6d4c9a5930166220244936ecdb040a8d7450 (diff) | |
parent | 9177b0f3f72203cb6e18ee59c98b531a698d7f19 (diff) | |
download | ouroboros-256d83081b93f39ad2e3f945b8b3d00e50c48972.tar.gz ouroboros-256d83081b93f39ad2e3f945b8b3d00e50c48972.zip |
Merged in sandervrijders/ouroboros/be-frct-api (pull request #497)
ipcpd: normal: Split connection establishment
Diffstat (limited to 'src/ipcpd/normal/flow_alloc.proto')
-rw-r--r-- | src/ipcpd/normal/flow_alloc.proto | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ipcpd/normal/flow_alloc.proto b/src/ipcpd/normal/flow_alloc.proto index 35624799..ee7f96e8 100644 --- a/src/ipcpd/normal/flow_alloc.proto +++ b/src/ipcpd/normal/flow_alloc.proto @@ -31,6 +31,9 @@ enum flow_alloc_code { message flow_alloc_msg { required flow_alloc_code code = 1; optional bytes hash = 2; - optional uint32 qoscube = 3; + optional uint32 qc = 3; optional sint32 response = 4; + optional uint32 cep_id = 5; + optional uint32 s_cep_id = 6; + optional uint64 s_addr = 7; }; |