@@ -311,17 +311,18 @@ static void configure_cli11_rlc_um_args(CLI::App& app, rlc_um_appconfig& rlc_um_
311311static void configure_cli11_rlc_am_args (CLI::App& app, rlc_am_appconfig& rlc_am_params)
312312{
313313 CLI::App* rlc_tx_am_subcmd = app.add_subcommand (" tx" , " AM TX parameters" );
314- rlc_tx_am_subcmd->add_option (" --sn" , rlc_am_params.tx .sn_field_length , " RLC AM TX SN" )->capture_default_str ();
315- rlc_tx_am_subcmd->add_option (" --t-poll-retransmit" , rlc_am_params.tx .t_poll_retx , " RLC AM TX SN " )
314+ rlc_tx_am_subcmd->add_option (" --sn" , rlc_am_params.tx .sn_field_length , " RLC AM TX SN size " )->capture_default_str ();
315+ rlc_tx_am_subcmd->add_option (" --t-poll-retransmit" , rlc_am_params.tx .t_poll_retx , " RLC AM TX t-PollRetransmit (ms) " )
316316 ->capture_default_str ();
317- rlc_tx_am_subcmd->add_option (" --max-retx-threshold" , rlc_am_params.tx .max_retx_thresh , " RLC AM TX SN " )
317+ rlc_tx_am_subcmd->add_option (" --max-retx-threshold" , rlc_am_params.tx .max_retx_thresh , " RLC AM max retx threshold " )
318318 ->capture_default_str ();
319- rlc_tx_am_subcmd->add_option (" --poll-pdu" , rlc_am_params.tx .poll_pdu , " RLC AM TX SN " )->capture_default_str ();
320- rlc_tx_am_subcmd->add_option (" --poll-byte" , rlc_am_params.tx .poll_byte , " RLC AM TX SN " )->capture_default_str ();
319+ rlc_tx_am_subcmd->add_option (" --poll-pdu" , rlc_am_params.tx .poll_pdu , " RLC AM TX PollPdu " )->capture_default_str ();
320+ rlc_tx_am_subcmd->add_option (" --poll-byte" , rlc_am_params.tx .poll_byte , " RLC AM TX PollByte " )->capture_default_str ();
321321 CLI::App* rlc_rx_am_subcmd = app.add_subcommand (" rx" , " AM RX parameters" );
322322 rlc_rx_am_subcmd->add_option (" --sn" , rlc_am_params.rx .sn_field_length , " RLC AM RX SN" )->capture_default_str ();
323- rlc_rx_am_subcmd->add_option (" --t-reassembly" , rlc_am_params.rx .t_reassembly , " RLC AM RX SN" )->capture_default_str ();
324- rlc_rx_am_subcmd->add_option (" --t-status-prohibit" , rlc_am_params.rx .t_status_prohibit , " RLC AM RX SN" )
323+ rlc_rx_am_subcmd->add_option (" --t-reassembly" , rlc_am_params.rx .t_reassembly , " RLC AM RX t-Reassembly" )
324+ ->capture_default_str ();
325+ rlc_rx_am_subcmd->add_option (" --t-status-prohibit" , rlc_am_params.rx .t_status_prohibit , " RLC AM RX t-StatusProhibit" )
325326 ->capture_default_str ();
326327}
327328
0 commit comments