blob: 09365dc1a7dd1ce8ba8b5487b6fbb27790f9273e [file] [log] [blame]
Yi Tseng21629932017-06-06 11:17:43 -07001#ifndef CHECK_SUMS
2#define CHECK_SUMS
3#include "headers.p4"
4#include "metadata.p4"
5
6control verifyChecksum(in headers hdr, inout metadata meta) {
7 apply {
8 // Nothing to do
9 }
10}
11
12control computeChecksum(inout headers hdr, inout metadata meta) {
13 apply {
14 // Nothing to do
15 }
16}
17#endif