mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 10:11:53 +00:00
54 lines
1014 B
Plaintext
54 lines
1014 B
Plaintext
/*
|
|
* BIRD -- Benchmarking Dummy Protocol Configuration
|
|
*
|
|
* (c) 2018 Maria Matejka <mq@jmq.cz>
|
|
*
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
*/
|
|
|
|
CF_HDR
|
|
|
|
#include "filter/filter.h"
|
|
#include "proto/perf/perf.h"
|
|
|
|
CF_DEFINES
|
|
|
|
#define PERF_CFG ((struct perf_config *) this_proto)
|
|
|
|
CF_DECLS
|
|
|
|
CF_KEYWORDS(PERF, EXP, FROM, TO, REPEAT, THRESHOLD, KEEP)
|
|
|
|
CF_GRAMMAR
|
|
|
|
proto: perf_proto '}' ;
|
|
|
|
perf_proto_start: proto_start PERF
|
|
{
|
|
this_proto = proto_config_new(&proto_perf, $1);
|
|
PERF_CFG->from = 10;
|
|
PERF_CFG->to = 20;
|
|
PERF_CFG->repeat = 4;
|
|
PERF_CFG->threshold = 500 MS_;
|
|
PERF_CFG->keep = 0;
|
|
};
|
|
|
|
perf_proto:
|
|
perf_proto_start proto_name '{'
|
|
| perf_proto perf_proto_item ';'
|
|
;
|
|
|
|
perf_proto_item:
|
|
proto_channel { this_proto->net_type = $1->net_type; }
|
|
| EXP FROM NUM { PERF_CFG->from = $3; }
|
|
| EXP TO NUM { PERF_CFG->to = $3; }
|
|
| REPEAT NUM { PERF_CFG->repeat = $2; }
|
|
| THRESHOLD expr_us { PERF_CFG->threshold = $2; }
|
|
| KEEP bool { PERF_CFG->keep = $2; }
|
|
;
|
|
|
|
|
|
CF_CODE
|
|
|
|
CF_END
|