diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-31 18:32:28 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-31 18:34:50 +0200 |
commit | 151adbc851c9b2a218f2be9409199c1baa62bd8d (patch) | |
tree | 5d13c9aa547018f70adfa054076fc4af8099b04b /src/lib/irmd_messages.proto | |
parent | b0dfdd839e0704af4f4bf4d4271688af9294e8c9 (diff) | |
download | ouroboros-151adbc851c9b2a218f2be9409199c1baa62bd8d.tar.gz ouroboros-151adbc851c9b2a218f2be9409199c1baa62bd8d.zip |
lib: Implementation of flow related ops
This adds the messages that are sent to the IPCPs related to
flows. Some messages are also sent to the IRMd (e.g. when a new flow
arrives).
Diffstat (limited to 'src/lib/irmd_messages.proto')
-rw-r--r-- | src/lib/irmd_messages.proto | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/irmd_messages.proto b/src/lib/irmd_messages.proto index a524a7fb..44070755 100644 --- a/src/lib/irmd_messages.proto +++ b/src/lib/irmd_messages.proto @@ -15,7 +15,10 @@ enum irm_msg_code { IRM_FLOW_CONTROL = 14; IRM_FLOW_WRITE = 15; IRM_FLOW_READ = 16; - IRM_REPLY = 17; + IPCP_FLOW_REQ_ARR = 17; + IPCP_FLOW_ALLOC_REPLY = 18; + IPCP_FLOW_DEALLOC = 19; + IRM_REPLY = 20; }; message irm_msg { @@ -31,4 +34,6 @@ message irm_msg { // Missing qos_spec here optional int32 oflags = 10; optional string dst_ap_name = 11; + optional uint32 port_id = 12; + optional int32 pid = 13; }; |