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,16 @@
// -*- c-basic-offset: 2; related-file-name: "../../linuxmodule/skbmgr.cc" -*-
#ifndef CLICK_SKBMGR_HH
#define CLICK_SKBMGR_HH
CLICK_DECLS
void skbmgr_init();
void skbmgr_cleanup();
/* allocate skbs. Number of skbs allocated is stored in the want variable */
struct sk_buff *skbmgr_allocate_skbs(unsigned headroom, unsigned size, int *want);
/* recycle skb back into pool */
void skbmgr_recycle_skbs(struct sk_buff *);
CLICK_ENDDECLS
#endif