21 lines
518 B
Text
21 lines
518 B
Text
|
#ifndef NICO_GENERIC
|
||
|
#define NICO_GENERIC
|
||
|
|
||
|
/********************** GENERAL ACTIONS ***********************************/
|
||
|
|
||
|
action controller_reply(task_t task) {
|
||
|
meta.task = task;
|
||
|
meta.ingress_port = standard_metadata.ingress_port;
|
||
|
clone3(CloneType.I2E, 100, meta);
|
||
|
}
|
||
|
|
||
|
action controller_debug_table_id(table_t table_id) {
|
||
|
meta.table_id = table_id;
|
||
|
controller_reply(TASK_DEBUG);
|
||
|
}
|
||
|
|
||
|
action controller_debug() {
|
||
|
controller_reply(TASK_DEBUG);
|
||
|
}
|
||
|
|
||
|
#endif
|