mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
OsmoMGW has a lot of nice built-in statistics (rate_ctr,...) but it seems the only way to look at them is via the VTY. While libosmocore contains automatic exposure of all rate counters via CTRL, the CTRL interface simply is not used by osmo-mgw so far. Closes: OS#4441 Change-Id: I7ed6bdb9f4749c24ca11a5905a620546cfe42952
25 lines
924 B
C
25 lines
924 B
C
/*
|
|
* (C) 2020 by Harald Welte <laforge@gnumonks.org>
|
|
* All Rights Reserved
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct ctrl_handle *mgw_ctrl_interface_setup(struct mgcp_config *cfg,
|
|
const char *bind_addr, uint16_t port);
|
|
|