diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-03-03 15:41:11 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-03-03 15:54:44 +0100 |
commit | a688b8a38d7eb9f42406eeb611717db737b0d257 (patch) | |
tree | 68a2bf098171299d2c30f9537c89b862edb0f996 /src/lib/cdap.proto | |
parent | d753cab1897e323b59923e2b0b11f550b087351c (diff) | |
download | ouroboros-a688b8a38d7eb9f42406eeb611717db737b0d257.tar.gz ouroboros-a688b8a38d7eb9f42406eeb611717db737b0d257.zip |
lib: Manage multiple flows with a single CDAP instance
You can now add multiple flows to a CDAP instance. This will simplify
sending messages to different peers (e.g. for syncing the RIB). A
request will now return an array of keys terminated by
CDAP_KEY_INVALID. Removes the enum from the CDAP proto file to just
take the opcode as an integer.
Diffstat (limited to 'src/lib/cdap.proto')
-rw-r--r-- | src/lib/cdap.proto | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lib/cdap.proto b/src/lib/cdap.proto index 5fde1658..120b2c97 100644 --- a/src/lib/cdap.proto +++ b/src/lib/cdap.proto @@ -23,18 +23,8 @@ syntax = "proto2"; -enum opcode { - CREATE = 1; - DELETE = 2; - READ = 3; - WRITE = 4; - START = 5; - STOP = 6; - REPLY = 7; -} - message cdap { - required opcode opcode = 1; + required uint32 opcode = 1; required uint32 invoke_id = 2; optional uint32 flags = 3; optional string name = 4; |