openflow build environment setup

This commit is contained in:
2025-11-11 16:45:43 +08:00
parent be0a7ad9b3
commit 50ecb9a23f
2767 changed files with 62766 additions and 649828 deletions

View File

@ -0,0 +1,14 @@
/* -*- related-file-name: "../../lib/crc32.c" -*- */
#ifndef CLICK_CRC32_H
#define CLICK_CRC32_H
#ifdef __cplusplus
extern "C" {
#endif
uint32_t update_crc(uint32_t crc_accum, const char *data_blk_ptr,
int data_blk_size);
#ifdef __cplusplus
}
#endif
#endif