-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
netfilter: xt_socket: added new revision of the 'socket' match suppor…
…ting flags If the XT_SOCKET_TRANSPARENT flag is set, enabled 'transparent' socket option is required for the socket to be matched. Signed-off-by: Laszlo Attila Toth <panther@balabit.hu> Signed-off-by: Patrick McHardy <kaber@trash.net>
- Loading branch information
Laszlo Attila Toth
authored and
Patrick McHardy
committed
Jun 9, 2009
1 parent
11eeef4
commit a31e1ff
Showing
2 changed files
with
64 additions
and
11 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,12 @@ | ||
#ifndef _XT_SOCKET_H | ||
#define _XT_SOCKET_H | ||
|
||
enum { | ||
XT_SOCKET_TRANSPARENT = 1 << 0, | ||
}; | ||
|
||
struct xt_socket_mtinfo1 { | ||
__u8 flags; | ||
}; | ||
|
||
#endif /* _XT_SOCKET_H */ |
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