mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-sgsn.git
synced 2025-11-02 05:03:15 +00:00
sgsn_vty: Fix output in config_write_sgsn
The encryption uea option was missing Change-Id: I2c81ced87c53d69a94b3894441323201f81f1a76
This commit is contained in:
@@ -282,6 +282,15 @@ static int config_write_sgsn(struct vty *vty)
|
||||
|
||||
vty_out(vty, "%s", VTY_NEWLINE);
|
||||
}
|
||||
if (g_cfg->uea_encryption_mask != 0) {
|
||||
vty_out(vty, " encryption uea");
|
||||
|
||||
for (i = 0; i < _OSMO_UTRAN_UEA_NUM; i++)
|
||||
if (g_cfg->uea_encryption_mask >> i & 1)
|
||||
vty_out(vty, " %u", i);
|
||||
|
||||
vty_out(vty, "%s", VTY_NEWLINE);
|
||||
}
|
||||
if (g_cfg->crypt_cipher_plugin_path)
|
||||
vty_out(vty, "encryption cipher-plugin-path %s%s", g_cfg->crypt_cipher_plugin_path, VTY_NEWLINE);
|
||||
if (g_cfg->sgsn_ipa_name)
|
||||
|
||||
Reference in New Issue
Block a user