Skip to content

Commit

Permalink
fix stream rx-interface config
Browse files Browse the repository at this point in the history
  • Loading branch information
GIC-de committed Feb 29, 2024
1 parent 8c9e5c6 commit ef8e180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/bngblaster/src/bbl_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit ef8e180

Please sign in to comment.