blob: effab74e18432e90b7bc3a48567299fc3ba9b5de [file] [log] [blame]
#ifndef CHECKSUMS
#define CHECKSUMS
#include "headers.p4"
control verifyChecksum(in headers_t hdr, inout metadata_t meta) {
apply {
// Nothing to do
}
}
control computeChecksum(inout headers_t hdr, inout metadata_t meta) {
apply {
// Nothing to do
}
}
#endif