-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package pf | ||
|
||
// #include <net/if.h> | ||
// #include <net/pfvar.h> | ||
import "C" | ||
|
||
// Limit represents a hard packet filter limit | ||
type Limit int | ||
|
||
const ( | ||
// LimitStates limits the number of pf states | ||
LimitStates Limit = C.PF_LIMIT_STATES | ||
// LimitSourceNodes limits the number of pf source nodes | ||
LimitSourceNodes Limit = C.PF_LIMIT_SRC_NODES | ||
// LimitFragments limits the number of pf fragments | ||
LimitFragments Limit = C.PF_LIMIT_FRAGS | ||
// LimitTableEntries limits the number of addresses in a table | ||
LimitTableEntries Limit = C.PF_LIMIT_TABLE_ENTRIES | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters