mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
To make clear which configuration changes (configure terminal) apply when, add appropriate user attributes to VTY commands. Change-Id: I2d9487801b3b78f94577264b56d217c926ef76a9 Related: SYS#4937, OS#1601
13 lines
177 B
C
13 lines
177 B
C
#pragma once
|
|
|
|
#include <osmocom/vty/command.h>
|
|
|
|
enum mgcp_vty_node {
|
|
MGCP_NODE = _LAST_OSMOVTY_NODE + 1,
|
|
TRUNK_NODE,
|
|
};
|
|
|
|
enum mgw_vty_cmd_attr {
|
|
MGW_CMD_ATTR_NEWCONN = 0,
|
|
};
|