VOL-1220 Add ability to trap LLDP pkts on NNI to send to controller

Change-Id: I3553c9f343f40d50d8d306b7e38d34cb1320c8cb
diff --git a/protos/openolt.proto b/protos/openolt.proto
index 4178f38..e9e8007 100644
--- a/protos/openolt.proto
+++ b/protos/openolt.proto
@@ -109,13 +109,6 @@
         };
     }
 
-    rpc CollectStatistics(Empty) returns (Empty) {
-        option (google.api.http) = {
-            post: "/v1/CollectStatistics"
-            body: "*"
-        };
-    }
-
     rpc GetDeviceInfo(Empty) returns (DeviceInfo) {
         option (google.api.http) = {
             post: "/v1/GetDeviceInfo"
@@ -130,6 +123,13 @@
         };
     }
 
+    rpc CollectStatistics(Empty) returns (Empty) {
+        option (google.api.http) = {
+            post: "/v1/CollectStatistics"
+            body: "*"
+        };
+    }
+
     rpc EnableIndication(Empty) returns (stream Indication) {}
 }
 
@@ -289,16 +289,16 @@
 }
 
 message Flow {
-    fixed32 access_intf_id = 1;
-    fixed32 onu_id = 2;
+    sfixed32 access_intf_id = 1;
+    sfixed32 onu_id = 2;
     fixed32 flow_id = 3;
     string flow_type = 4;	// upstream, downstream, broadcast, multicast
-    fixed32 network_intf_id = 5;
-    fixed32 gemport_id = 6;
-    fixed32 alloc_id = 10;
+    sfixed32 alloc_id = 10;
+    sfixed32 network_intf_id = 5;
+    sfixed32 gemport_id = 6;
     Classifier classifier = 7;
     Action action = 8;
-    fixed32 priority = 9;
+    sfixed32 priority = 9;
 }
 
 message SerialNumber {