Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 1 | // SPDX-FileCopyrightText: 2020 The Magma Authors. |
| 2 | // SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org> |
| 3 | // |
| 4 | // SPDX-License-Identifier: BSD-3-Clause |
| 5 | |
| 6 | syntax = "proto3"; |
| 7 | |
| 8 | import "orc8r/protos/common.proto"; |
| 9 | |
| 10 | package magma.lte; |
| 11 | |
| 12 | option go_package = "magma/lte/cloud/go/protos"; |
| 13 | |
| 14 | service S1apService { |
| 15 | // Returns state of the S1 connected eNBs |
| 16 | rpc GetENBState (magma.orc8r.Void) returns (EnbStateResult) {} |
| 17 | } |
| 18 | |
| 19 | // enb_state_map { eNB IDs -> # UEs connected } |
| 20 | message EnbStateResult { |
| 21 | map<uint32, uint32> enb_state_map = 1; |
| 22 | } |