31 lines
No EOL
493 B
Text
31 lines
No EOL
493 B
Text
#ifndef DUMMY_NETPFGA
|
|
#define DUMMY_NETPFGA
|
|
|
|
action do_nothing() {
|
|
;
|
|
}
|
|
|
|
action send_to_port(port_t port) {
|
|
sume_metadata.dst_port = port;
|
|
}
|
|
|
|
action send_to_port1() {
|
|
sume_metadata.dst_port = 1;
|
|
}
|
|
|
|
table dummy_table_for_netpfga {
|
|
key = {
|
|
hdr.ethernet.dst_addr: exact;
|
|
}
|
|
|
|
actions = {
|
|
do_nothing;
|
|
send_to_port1;
|
|
send_to_port;
|
|
}
|
|
size = TEST_TABLE_SIZE;
|
|
// default_action = do_nothing;
|
|
default_action = send_to_port1;
|
|
}
|
|
|
|
#endif |