VTY: add warning about changing PCU socket path at run-time

Change-Id: I7cee2d782bd3dfc2cc8d2febc16dca905dcc294e
This commit is contained in:
Vadim Yanitskiy 2019-11-30 20:13:25 +07:00
parent 1e6eb30f51
commit fc75cc0ecf
1 changed files with 3 additions and 2 deletions

View File

@ -1097,12 +1097,13 @@ DEFUN(cfg_pcu_sock,
{
struct gprs_rlcmac_bts *bts = bts_main_data();
if (vty->type != VTY_FILE)
vty_out(vty, "Changing PCU socket path at run-time has no effect%s", VTY_NEWLINE);
if (bts->pcu_sock_path) {
/* FIXME: close the interface? */
talloc_free(bts->pcu_sock_path);
}
bts->pcu_sock_path = talloc_strdup(tall_pcu_ctx, argv[0]);
/* FIXME: re-open the interface? */
return CMD_SUCCESS;
}