From caf73b803c666a63e9948bbf12b4f424cae754bd Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Wed, 27 Jan 2021 21:02:13 +0100 Subject: sgsn: migrate to the new gprs_ns2_vty configuration Change the whole vty configuration for NS to be more flexible and support more setups. Old configurations are invalid. API change which must be synchronized with libosmocore For further information see: https://osmocom.org/projects/libosmocore/wiki/Network_service_(NS) Depends-on: I8c3f2afecc74b78f7f914f7dce166cbcb63444eb (libosmocore) Change-Id: Ie9306ab4d4738c2c57a69987086e22771b30657e --- src/sgsn/sgsn_main.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'src') diff --git a/src/sgsn/sgsn_main.c b/src/sgsn/sgsn_main.c index 19039f694..f6eac607c 100644 --- a/src/sgsn/sgsn_main.c +++ b/src/sgsn/sgsn_main.c @@ -328,11 +328,6 @@ static bool file_exists(const char *path) int main(int argc, char **argv) { int rc; - struct osmo_sockaddr_str bind_address = { - .af = AF_INET, - .ip = "0.0.0.0", - .port = 23000, - }; #if BUILD_IU struct osmo_sccp_instance *sccp; #endif @@ -402,7 +397,7 @@ int main(int argc, char **argv) sgsn_inst_init(sgsn); - gprs_ns2_vty_init(sgsn_nsi, &bind_address); + gprs_ns2_vty_init(sgsn_nsi); bssgp_vty_init(); gprs_llc_vty_init(); gprs_sndcp_vty_init(); @@ -449,12 +444,6 @@ int main(int argc, char **argv) exit(2); } - rc = gprs_ns2_vty_create(); - if (rc < 0) { - LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on NSIP socket\n"); - exit(2); - } - gprs_ns2_dynamic_create_nse(sgsn_nsi, true); if (sgsn->cfg.dynamic_lookup) { -- cgit v1.2.3