blob: c649c0a99fc0149a065e4e2ae9c6e40d8abc5076 [file] [log] [blame]
Wei-Yu Chenad55cb82022-02-15 20:07:01 +08001// 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
6syntax = "proto3";
7
8import "orc8r/protos/common.proto";
9
10package magma.lte;
11
12option go_package = "magma/lte/cloud/go/protos";
13
14service 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 }
20message EnbStateResult {
21 map<uint32, uint32> enb_state_map = 1;
22}