Update tcl to version 8.5.13
[msysgit.git] / mingw / include / fltdefs.h
blobeadf0ac192d66be80349a1cd4333aefe691b6142
1 /*
2 * fltdefs.h - Routing and Remote Access Services
4 * THIS SOFTWARE IS NOT COPYRIGHTED
6 * This source code is offered for use in the public domain. You may use,
7 * modify or distribute it freely.
9 * This code is distributed in the hope that it will be useful but
10 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
11 * DISCLAIMED. This includes but is not limited to warranties of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 #ifndef _FLTDEFS_H
16 #define _FLTDEFS_H
17 #if __GNUC__ >= 3
18 #pragma GCC system_header
19 #endif
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
25 /*--- Packet Filtering Reference - Packet Filtering Enumerated Types */
26 #if (_WIN32_WINNT >= 0x0500)
27 typedef enum _GlobalFilter {
28 GF_FRAGMENTS = 2,
29 GF_STRONGHOST = 8,
30 GF_FRAGCACHE = 9
31 } GLOBAL_FILTER,*PGLOBAL_FILTER;
32 typedef enum _PfAddresType {
33 PF_IPV4,
34 PF_IPV6
35 } PFADDRESSTYPE,*PPFADDRESSTYPE;
36 typedef enum _PfForwardAction {
37 PF_ACTION_FORWARD = 0,
38 PF_ACTION_DROP
39 } PFFORWARD_ACTION,*PPFFORWARD_ACTION;
40 typedef enum _PfFrameType {
41 PFFT_FILTER = 1,
42 PFFT_FRAG = 2,
43 PFFT_SPOOF = 3
44 } PFFRAMETYPE,*PPFFRAMETYPE;
45 #endif /* (_WIN32_WINNT >= 0x0500) */
47 #ifdef __cplusplus
49 #endif
50 #endif