@@ -1281,6 +1281,8 @@ static void configure_cli11_rlc_um_args(CLI::App& app, rlc_um_appconfig& rlc_um_
12811281{
12821282 CLI::App* rlc_tx_um_subcmd = app.add_subcommand (" tx" , " UM TX parameters" );
12831283 rlc_tx_um_subcmd->add_option (" --sn" , rlc_um_params.tx .sn_field_length , " RLC UM TX SN" )->capture_default_str ();
1284+ rlc_tx_um_subcmd->add_option (" --queue-size" , rlc_um_params.tx .queue_size , " RLC UM TX SDU queue size" )
1285+ ->capture_default_str ();
12841286 CLI::App* rlc_rx_um_subcmd = app.add_subcommand (" rx" , " UM TX parameters" );
12851287 rlc_rx_um_subcmd->add_option (" --sn" , rlc_um_params.rx .sn_field_length , " RLC UM RX SN" )->capture_default_str ();
12861288 rlc_rx_um_subcmd->add_option (" --t-reassembly" , rlc_um_params.rx .t_reassembly , " RLC UM t-Reassembly" )
@@ -1297,11 +1299,12 @@ static void configure_cli11_rlc_am_args(CLI::App& app, rlc_am_appconfig& rlc_am_
12971299 ->capture_default_str ();
12981300 rlc_tx_am_subcmd->add_option (" --poll-pdu" , rlc_am_params.tx .poll_pdu , " RLC AM TX PollPdu" )->capture_default_str ();
12991301 rlc_tx_am_subcmd->add_option (" --poll-byte" , rlc_am_params.tx .poll_byte , " RLC AM TX PollByte" )->capture_default_str ();
1300- rlc_tx_am_subcmd
1301- ->add_option (" --max_window" ,
1302- rlc_am_params.tx .max_window ,
1303- " Non-standard parameter that limits the tx window size. Can be used for limiting memory usage with "
1304- " large windows. 0 means no limits other than the SN size (i.e. 2^[sn_size-1])." )
1302+ rlc_tx_am_subcmd->add_option (
1303+ " --max_window" ,
1304+ rlc_am_params.tx .max_window ,
1305+ " Non-standard parameter that limits the tx window size. Can be used for limiting memory usage with "
1306+ " large windows. 0 means no limits other than the SN size (i.e. 2^[sn_size-1])." );
1307+ rlc_tx_am_subcmd->add_option (" --queue-size" , rlc_am_params.tx .queue_size , " RLC AM TX SDU queue size" )
13051308 ->capture_default_str ();
13061309 CLI::App* rlc_rx_am_subcmd = app.add_subcommand (" rx" , " AM RX parameters" );
13071310 rlc_rx_am_subcmd->add_option (" --sn" , rlc_am_params.rx .sn_field_length , " RLC AM RX SN" )->capture_default_str ();
0 commit comments