blob: cb86f90f3d5173a09da261fc455d6201d26edfc0 [file] [log] [blame]
#ifndef CHECKSUMS
#define CHECKSUMS
#include "headers.p4"
#include "metadata.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