From ef8e1801bf080ec178a25cf58b556b158e3f60dd Mon Sep 17 00:00:00 2001 From: Christian Giese Date: Thu, 29 Feb 2024 15:44:51 +0000 Subject: [PATCH] fix stream rx-interface config --- code/bngblaster/src/bbl_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/bngblaster/src/bbl_config.c b/code/bngblaster/src/bbl_config.c index 712f998b..e509475f 100644 --- a/code/bngblaster/src/bbl_config.c +++ b/code/bngblaster/src/bbl_config.c @@ -2503,7 +2503,7 @@ json_parse_stream(json_t *stream, bbl_stream_config_s *stream_config) stream_config->rx_mpls2_label = json_number_value(value); } if(json_unpack(stream, "{s:s}", "rx-interface", &s) == 0) { - stream_config->network_interface = strdup(s); + stream_config->rx_interface = strdup(s); } /* NAT configuration */