Navigation


Changeset 575:66f188b3ca84 in freeDiameter for extensions/test_app/ta_conf.y


Ignore:
Timestamp:
Oct 8, 2010, 4:02:48 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Configurable parameters for the benchmark mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/test_app/ta_conf.y

    r572 r575  
    188188                                ta_conf->mode |= MODE_BENCH;
    189189                        }
     190                        | BENCH INTEGER INTEGER ';'
     191                        {
     192                                ta_conf->mode |= MODE_BENCH;
     193                                ta_conf->bench_duration = $2;
     194                                ta_conf->bench_concur   = $3;
     195                        }
    190196                        ;
    191197
Note: See TracChangeset for help on using the changeset viewer.