seba-321 implemented reflow logic
Change-Id: I4a67a38104dbcb9bbfa830b38fc4fc21c42c2dbd
diff --git a/api/abstract_olt_api.proto b/api/abstract_olt_api.proto
index 0a031bb..7a8cb69 100644
--- a/api/abstract_olt_api.proto
+++ b/api/abstract_olt_api.proto
@@ -103,6 +103,12 @@
message DeleteOntReturn{
bool Success=1;
}
+message ReflowMessage{
+
+}
+message ReflowReturn{
+ bool Success=1;
+}
message OutputMessage{
string Something=1;
}
@@ -152,10 +158,17 @@
body:"*"
};
}
+ rpc Reflow(ReflowMessage)returns (ReflowReturn){
+ option(google.api.http)={
+ post:"/v1/Reflow"
+ body:"*"
+
+ };
+ }
rpc Output(OutputMessage)returns(OutputReturn){
option(google.api.http)={
post:"/v1/Output"
- body:"*"
+ body:"*"
};
}
}