blob: effab74e18432e90b7bc3a48567299fc3ba9b5de [file] [log] [blame]
Carmelo Cascone837e6452017-07-19 20:35:22 -04001#ifndef CHECKSUMS
2#define CHECKSUMS
Yi Tseng21629932017-06-06 11:17:43 -07003#include "headers.p4"
Yi Tseng21629932017-06-06 11:17:43 -07004
Carmelo Cascone837e6452017-07-19 20:35:22 -04005control verifyChecksum(in headers_t hdr, inout metadata_t meta) {
Yi Tseng21629932017-06-06 11:17:43 -07006 apply {
7 // Nothing to do
8 }
9}
10
Carmelo Cascone837e6452017-07-19 20:35:22 -040011control computeChecksum(inout headers_t hdr, inout metadata_t meta) {
Yi Tseng21629932017-06-06 11:17:43 -070012 apply {
13 // Nothing to do
14 }
15}
Carmelo Cascone837e6452017-07-19 20:35:22 -040016
Yi Tseng21629932017-06-06 11:17:43 -070017#endif