Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 1 | // Copyright (c) 2018 Open Networking Foundation |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at: |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | syntax = "proto3"; |
amit.ghosh | ee17c00 | 2021-06-10 12:14:38 +0200 | [diff] [blame] | 16 | |
| 17 | option go_package = "github.com/opencord/bbsim/api/bbsim"; |
| 18 | |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 19 | package bbsim; |
| 20 | |
Pragya Arya | 8bdb453 | 2020-03-02 17:08:09 +0530 | [diff] [blame] | 21 | import "voltha_protos/openolt.proto"; |
Anand S Katti | 0954135 | 2020-01-29 15:54:01 +0530 | [diff] [blame] | 22 | import "voltha_protos/tech_profile.proto"; |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 23 | // Models |
| 24 | |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 25 | message PONPort { |
| 26 | int32 ID = 1; |
| 27 | string OperState = 2; |
Matteo Scandolo | 4b077aa | 2021-02-16 17:33:37 -0800 | [diff] [blame] | 28 | string InternalState = 3; |
| 29 | uint64 PacketCount = 4; |
| 30 | // ONU ID are reported by VOLTHA in the ActivateOnu call |
| 31 | repeated PonAllocatedResources AllocatedOnuIds = 5; |
| 32 | // these are the stored resource IDs as reported via OMCI |
| 33 | repeated PonAllocatedResources AllocatedGemPorts = 6; |
| 34 | repeated PonAllocatedResources AllocatedAllocIds = 7; |
| 35 | } |
| 36 | |
| 37 | message PonAllocatedResources { |
| 38 | string SerialNumber = 1; |
| 39 | int32 Id = 2; |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | message NNIPort { |
| 43 | int32 ID = 1; |
| 44 | string OperState = 2; |
| 45 | } |
| 46 | |
| 47 | message Olt { |
| 48 | int32 ID = 1; |
Matteo Scandolo | 8df63df | 2019-09-12 10:34:32 -0700 | [diff] [blame] | 49 | string SerialNumber = 2; |
| 50 | string OperState = 3; |
| 51 | string InternalState = 4; |
rajesh | f921f88 | 2020-03-06 18:24:28 +0530 | [diff] [blame] | 52 | string IP = 7; |
Matteo Scandolo | 8df63df | 2019-09-12 10:34:32 -0700 | [diff] [blame] | 53 | repeated NNIPort NNIPorts = 5; |
| 54 | repeated PONPort PONPorts = 6; |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Matteo Scandolo | 4b077aa | 2021-02-16 17:33:37 -0800 | [diff] [blame] | 57 | message OltAllocatedResourceType { |
| 58 | enum Type { |
| 59 | UNKNOWN = 0; |
| 60 | ALLOC_ID = 1; |
| 61 | GEM_PORT = 2; |
| 62 | } |
| 63 | Type type = 1; |
| 64 | } |
| 65 | |
| 66 | message OltAllocatedResource { |
| 67 | string Type = 1; |
| 68 | uint32 PonPortId = 2; |
| 69 | uint32 OnuId = 3; |
| 70 | uint32 PortNo = 4; |
| 71 | int32 ResourceId = 5; |
| 72 | uint64 FlowId = 6; |
| 73 | } |
| 74 | |
| 75 | message OltAllocatedResources { |
| 76 | repeated OltAllocatedResource resources = 1; |
| 77 | } |
| 78 | |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 79 | message ONU { |
| 80 | int32 ID = 1; |
| 81 | string SerialNumber = 2; |
| 82 | string OperState = 3; |
| 83 | string InternalState = 4; |
| 84 | int32 PonPortID = 5; |
Matteo Scandolo | 8a57481 | 2021-05-20 15:18:53 -0700 | [diff] [blame] | 85 | string HwAddress = 8 [deprecated = true]; |
| 86 | int32 PortNo = 9 [deprecated = true]; |
| 87 | repeated Service services = 10 [deprecated = true]; |
Matteo Scandolo | cedde46 | 2021-03-09 17:37:16 -0800 | [diff] [blame] | 88 | int32 ImageSoftwareExpectedSections = 11; |
| 89 | int32 ImageSoftwareReceivedSections = 12; |
| 90 | int32 ActiveImageEntityId = 13; |
| 91 | int32 CommittedImageEntityId = 14; |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 92 | repeated UNI unis = 15; |
| 93 | } |
| 94 | |
| 95 | message UNI { |
| 96 | int32 ID = 1; |
| 97 | int32 OnuID = 2; |
| 98 | string OnuSn = 3; |
| 99 | uint32 MeID = 4; |
| 100 | string OperState = 5; |
Matteo Scandolo | 8a57481 | 2021-05-20 15:18:53 -0700 | [diff] [blame] | 101 | int32 PortNo = 6; |
| 102 | repeated Service services = 7; |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | message Service { |
| 106 | string Name = 1; |
| 107 | string HwAddress = 2; |
| 108 | string OnuSn = 3; |
| 109 | int32 STag = 4; |
| 110 | int32 CTag = 5; |
| 111 | bool NeedsEapol = 6; |
| 112 | bool NeedsDhcp = 7; |
| 113 | bool NeedsIgmp = 8; |
| 114 | int32 GemPort = 9; |
| 115 | string EapolState = 10; |
| 116 | string DhcpState = 11; |
Matteo Scandolo | 75ed5b9 | 2020-09-03 09:03:16 -0700 | [diff] [blame] | 117 | string InternalState = 12; |
Matteo Scandolo | 618a658 | 2020-09-09 12:21:29 -0700 | [diff] [blame] | 118 | string IGMPState = 13; |
Matteo Scandolo | 8a57481 | 2021-05-20 15:18:53 -0700 | [diff] [blame] | 119 | uint32 UniId = 14; |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Anand S Katti | 0954135 | 2020-01-29 15:54:01 +0530 | [diff] [blame] | 122 | message ONUTrafficSchedulers { |
| 123 | tech_profile.TrafficSchedulers traffSchedulers = 1; |
| 124 | } |
| 125 | |
Matteo Scandolo | 9a3518c | 2019-08-13 14:36:01 -0700 | [diff] [blame] | 126 | message ONUs { |
| 127 | repeated ONU items = 1; |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 130 | message Services { |
| 131 | repeated Service items = 1; |
| 132 | } |
| 133 | |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 134 | message UNIs { |
| 135 | repeated UNI items = 1; |
| 136 | } |
| 137 | |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 138 | // Inputs |
| 139 | |
| 140 | message ONURequest { |
| 141 | string SerialNumber = 1; |
| 142 | } |
| 143 | |
Pragya Arya | bd731ec | 2020-02-11 16:38:17 +0530 | [diff] [blame] | 144 | message PONRequest { |
| 145 | uint32 PonPortId = 1; |
| 146 | } |
| 147 | |
Nitin Subramanian | b0a333a | 2021-07-08 15:01:41 -0700 | [diff] [blame] | 148 | message UNIRequest { |
| 149 | string OnuSerialNumber = 1; |
| 150 | string UniID = 2; |
| 151 | } |
| 152 | |
Scott Baker | 41724b8 | 2020-01-21 19:54:53 -0800 | [diff] [blame] | 153 | // Alarms |
| 154 | |
| 155 | message AlarmType { |
| 156 | // These types correspond to the messages permitted in the oneof |
| 157 | // in AlarmIndication in the openolt protos |
| 158 | enum Types { |
| 159 | LOS = 0; // LOS is an OLT alarm for an entire PON |
| 160 | DYING_GASP = 1; |
| 161 | ONU_ALARM = 2; |
| 162 | ONU_STARTUP_FAILURE = 3; |
| 163 | ONU_SIGNAL_DEGRADE = 4; |
| 164 | ONU_DRIFT_OF_WINDOW = 5; |
| 165 | ONU_LOSS_OF_OMCI_CHANNEL = 6; |
| 166 | ONU_SIGNALS_FAILURE = 7; |
| 167 | ONU_TRANSMISSION_INTERFERENCE_WARNING = 8; |
| 168 | ONU_ACTIVATION_FAILURE = 9; |
| 169 | ONU_PROCESSING_ERROR = 10; |
| 170 | ONU_LOSS_OF_KEY_SYNC_FAILURE = 11; |
| 171 | ONU_ITU_PON_STATS = 12; |
| 172 | |
| 173 | // These break out ONU_ALARM, which is a single message, but |
| 174 | // includes statuses for these six alarms. |
| 175 | ONU_ALARM_LOS = 13; |
| 176 | ONU_ALARM_LOB = 14; |
| 177 | ONU_ALARM_LOPC_MISS = 15; |
| 178 | ONU_ALARM_LOPC_MIC_ERROR = 16; |
| 179 | ONU_ALARM_LOFI = 17; |
| 180 | ONU_ALARM_LOAMI = 18; |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | message AlarmParameter { |
| 185 | string Key = 1; |
| 186 | string Value = 2; |
| 187 | } |
| 188 | |
Anand S Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 189 | // ONUAlarmRequest includes fields common to every Onu alarm, |
Anand S Katti | 0954135 | 2020-01-29 15:54:01 +0530 | [diff] [blame] | 190 | // plus an optional list of AlarmParameter list that can be used |
Scott Baker | 41724b8 | 2020-01-21 19:54:53 -0800 | [diff] [blame] | 191 | // to set additional fields in alarms that support them. |
Anand S Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 192 | message ONUAlarmRequest { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 193 | string AlarmType = 1; // name of alarm to raise |
| 194 | string SerialNumber = 2; // serial number of ONU |
| 195 | string Status = 3; // status of Alarm |
Scott Baker | 41724b8 | 2020-01-21 19:54:53 -0800 | [diff] [blame] | 196 | repeated AlarmParameter Parameters = 4; // optional list of additional parameters |
| 197 | } |
| 198 | |
Anand S Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 199 | // OLT alarm request |
| 200 | message OLTAlarmRequest { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 201 | uint32 InterfaceID = 1; // Switch Interface Id |
| 202 | string InterfaceType = 2; // PON or NNI Type |
| 203 | string Status = 3; // Interface Operstatus |
Anand S Katti | 86552f9 | 2020-03-03 21:56:32 +0530 | [diff] [blame] | 204 | } |
| 205 | |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 206 | // Utils |
| 207 | |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 208 | message VersionNumber { |
| 209 | string version = 1; |
| 210 | string buildTime = 2; |
| 211 | string commitHash = 3; |
| 212 | string gitStatus = 4; |
| 213 | } |
| 214 | |
Matteo Scandolo | 2bf742a | 2019-10-01 11:33:34 -0700 | [diff] [blame] | 215 | message LogLevel { |
| 216 | string level = 1; |
| 217 | bool caller = 2; |
| 218 | } |
| 219 | |
Matteo Scandolo | 10f965c | 2019-09-24 10:40:46 -0700 | [diff] [blame] | 220 | message Response { |
| 221 | int32 status_code = 1; |
| 222 | string message = 2; |
| 223 | } |
| 224 | |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 225 | enum SubActionTypes { |
| 226 | JOIN = 0; |
| 227 | LEAVE = 1; |
Arjun E K | dd443f0 | 2020-02-07 15:24:01 +0000 | [diff] [blame] | 228 | JOINV3 = 2; |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | message IgmpRequest { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 232 | ONURequest OnuReq = 1; |
| 233 | SubActionTypes SubActionVal = 2; |
Onur Kalinagac | 9f9faca | 2021-01-21 14:04:34 +0000 | [diff] [blame] | 234 | string GroupAddress = 3; |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 235 | } |
| 236 | |
Pragya Arya | 8bdb453 | 2020-03-02 17:08:09 +0530 | [diff] [blame] | 237 | message Flows { |
| 238 | uint32 flow_count = 1; |
| 239 | repeated openolt.Flow flows = 2; |
| 240 | } |
| 241 | |
Matteo Scandolo | 88c204a | 2020-11-03 10:34:24 -0800 | [diff] [blame] | 242 | message Timeout { |
| 243 | uint32 delay = 1; |
| 244 | } |
| 245 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 246 | message Empty { |
| 247 | } |
Matteo Scandolo | 84f7d48 | 2019-08-08 19:00:47 -0700 | [diff] [blame] | 248 | |
| 249 | service BBSim { |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 250 | // Get BBSim version |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 251 | rpc Version (Empty) returns (VersionNumber) { |
| 252 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 253 | // Set BBSim log level |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 254 | rpc SetLogLevel (LogLevel) returns (LogLevel) { |
| 255 | } |
Pragya Arya | bd731ec | 2020-02-11 16:38:17 +0530 | [diff] [blame] | 256 | |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 257 | // Get current status of OLT |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 258 | rpc GetOlt (Empty) returns (Olt) { |
| 259 | } |
Matteo Scandolo | 4b077aa | 2021-02-16 17:33:37 -0800 | [diff] [blame] | 260 | |
| 261 | rpc GetOltAllocatedResources (OltAllocatedResourceType) returns (OltAllocatedResources) { |
| 262 | } |
| 263 | |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 264 | // Poweron OLT |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 265 | rpc PoweronOlt (Empty) returns (Response) { |
| 266 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 267 | // Shutdown OLT |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 268 | rpc ShutdownOlt (Empty) returns (Response) { |
| 269 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 270 | // Reboot OLT |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 271 | rpc RebootOlt (Empty) returns (Response) { |
| 272 | } |
Matteo Scandolo | 88c204a | 2020-11-03 10:34:24 -0800 | [diff] [blame] | 273 | // Closes the Openolt gRPC server |
| 274 | rpc StopgRPCServer (Empty) returns (Response) { |
| 275 | } |
| 276 | // Start the Openolt gRPC server |
| 277 | rpc StartgRPCServer (Empty) returns (Response) { |
| 278 | } |
| 279 | // Restart the Openolt gRPC server after the given timeout |
| 280 | rpc RestartgRPCServer (Timeout) returns (Response) { |
| 281 | } |
Pragya Arya | bd731ec | 2020-02-11 16:38:17 +0530 | [diff] [blame] | 282 | |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 283 | // Get status of an ONU by serial number |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 284 | rpc GetONU (ONURequest) returns (ONU) { |
| 285 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 286 | // Get status of all ONUs |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 287 | rpc GetONUs (Empty) returns (ONUs) { |
| 288 | } |
| 289 | |
Nitin Subramanian | b0a333a | 2021-07-08 15:01:41 -0700 | [diff] [blame] | 290 | // Get all the Services by Uni ID |
| 291 | rpc GetServices (UNIRequest) returns (Services) { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 294 | // Get all the UNIs of an ONU by serial number |
| 295 | rpc GetOnuUnis (ONURequest) returns (UNIs) { |
| 296 | } |
| 297 | |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 298 | // Shutdown an ONU by serial number |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 299 | rpc ShutdownONU (ONURequest) returns (Response) { |
| 300 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 301 | // Shutdown all ONUs in OLT |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 302 | rpc ShutdownAllONUs (Empty) returns (Response) { |
| 303 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 304 | // Shutdown all ONUs under a PON by pon-port-ID |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 305 | rpc ShutdownONUsOnPON (PONRequest) returns (Response) { |
| 306 | } |
Pragya Arya | bd731ec | 2020-02-11 16:38:17 +0530 | [diff] [blame] | 307 | |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 308 | // Poweron an ONU by serial number |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 309 | rpc PoweronONU (ONURequest) returns (Response) { |
| 310 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 311 | // Poweron all ONUs in OLT |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 312 | rpc PoweronAllONUs (Empty) returns (Response) { |
| 313 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 314 | // Poweron all ONUs under a PON by pon-port-ID |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 315 | rpc PoweronONUsOnPON (PONRequest) returns (Response) { |
| 316 | } |
Pragya Arya | bd731ec | 2020-02-11 16:38:17 +0530 | [diff] [blame] | 317 | |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 318 | // Restart EAPOL for ONU |
Nitin Subramanian | 150f1bb | 2021-08-02 12:04:05 -0700 | [diff] [blame^] | 319 | rpc RestartEapol (UNIRequest) returns (Response) { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 320 | } |
Onur Kalinagac | 9f9faca | 2021-01-21 14:04:34 +0000 | [diff] [blame] | 321 | // Restart DHCP for ONU |
Nitin Subramanian | 150f1bb | 2021-08-02 12:04:05 -0700 | [diff] [blame^] | 322 | rpc RestartDhcp (UNIRequest) returns (Response) { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 323 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 324 | // Send ONU alarm indication |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 325 | rpc SetOnuAlarmIndication (ONUAlarmRequest) returns (Response) { |
| 326 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 327 | // Send OLT alarm indication for Interface type NNI or PON |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 328 | rpc SetOltAlarmIndication (OLTAlarmRequest) returns (Response) { |
| 329 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 330 | // Get all flows or ONU specific flows |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 331 | rpc GetFlows (ONURequest) returns (Flows) { |
| 332 | } |
Onur Kalinagac | 9f9faca | 2021-01-21 14:04:34 +0000 | [diff] [blame] | 333 | // Change IGMP state |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 334 | rpc ChangeIgmpState (IgmpRequest) returns (Response) { |
| 335 | } |
Pragya Arya | 3f8fdc6 | 2020-03-16 11:12:27 +0530 | [diff] [blame] | 336 | // Get Traffic scheduler information for ONU |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 337 | rpc GetOnuTrafficSchedulers (ONURequest) returns (ONUTrafficSchedulers) { |
| 338 | } |
Nitin Subramanian | b0a333a | 2021-07-08 15:01:41 -0700 | [diff] [blame] | 339 | //Return all the UNIs for all the ONUs |
| 340 | rpc GetUnis (Empty) returns (UNIs) { |
| 341 | } |
Arjun E K | 57a7fcb | 2020-01-30 06:44:45 +0000 | [diff] [blame] | 342 | } |