Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
408ffaa4
Commit
408ffaa4
authored
Feb 28, 2010
by
Jan Engelhardt
Committed by
Patrick McHardy
Mar 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netfilter: update my email address
Signed-off-by:
Jan Engelhardt
<
jengelh@medozas.de
>
parent
0cb47ea2
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
8 additions
and
12 deletions
+8
-12
Documentation/feature-removal-schedule.txt
Documentation/feature-removal-schedule.txt
+1
-1
net/bridge/netfilter/ebt_ip6.c
net/bridge/netfilter/ebt_ip6.c
+1
-1
net/netfilter/xt_TCPOPTSTRIP.c
net/netfilter/xt_TCPOPTSTRIP.c
+1
-2
net/netfilter/xt_connlimit.c
net/netfilter/xt_connlimit.c
+0
-1
net/netfilter/xt_connmark.c
net/netfilter/xt_connmark.c
+1
-1
net/netfilter/xt_hashlimit.c
net/netfilter/xt_hashlimit.c
+1
-1
net/netfilter/xt_recent.c
net/netfilter/xt_recent.c
+1
-1
net/netfilter/xt_time.c
net/netfilter/xt_time.c
+1
-2
net/netfilter/xt_u32.c
net/netfilter/xt_u32.c
+1
-2
No files found.
Documentation/feature-removal-schedule.txt
View file @
408ffaa4
...
...
@@ -247,7 +247,7 @@ What (Why):
When: January 2009 or Linux 2.7.0, whichever comes first
Why: Superseded by newer revisions or modules
Who: Jan Engelhardt <jengelh@
computergmbh
.de>
Who: Jan Engelhardt <jengelh@
medozas
.de>
---------------------------
...
...
net/bridge/netfilter/ebt_ip6.c
View file @
408ffaa4
...
...
@@ -4,7 +4,7 @@
* Authors:
* Manohar Castelino <manohar.r.castelino@intel.com>
* Kuo-Lang Tseng <kuo-lang.tseng@intel.com>
* Jan Engelhardt <jengelh@
computergmbh
.de>
* Jan Engelhardt <jengelh@
medozas
.de>
*
* Summary:
* This is just a modification of the IPv4 code written by
...
...
net/netfilter/xt_TCPOPTSTRIP.c
View file @
408ffaa4
...
...
@@ -3,7 +3,6 @@
*
* Copyright (C) 2007 Sven Schnelle <svens@bitebene.org>
* Copyright © CC Computer Consultants GmbH, 2007
* Contact: Jan Engelhardt <jengelh@computergmbh.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
...
...
@@ -136,7 +135,7 @@ static void __exit tcpoptstrip_tg_exit(void)
module_init
(
tcpoptstrip_tg_init
);
module_exit
(
tcpoptstrip_tg_exit
);
MODULE_AUTHOR
(
"Sven Schnelle <svens@bitebene.org>, Jan Engelhardt <jengelh@
computergmbh
.de>"
);
MODULE_AUTHOR
(
"Sven Schnelle <svens@bitebene.org>, Jan Engelhardt <jengelh@
medozas
.de>"
);
MODULE_DESCRIPTION
(
"Xtables: TCP option stripping"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_ALIAS
(
"ipt_TCPOPTSTRIP"
);
...
...
net/netfilter/xt_connlimit.c
View file @
408ffaa4
...
...
@@ -5,7 +5,6 @@
* Nov 2002: Martin Bene <martin.bene@icomedias.com>:
* only ignore TIME_WAIT or gone connections
* (C) CC Computer Consultants GmbH, 2007
* Contact: <jengelh@computergmbh.de>
*
* based on ...
*
...
...
net/netfilter/xt_connmark.c
View file @
408ffaa4
...
...
@@ -4,7 +4,7 @@
* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
* by Henrik Nordstrom <hno@marasystems.com>
* Copyright © CC Computer Consultants GmbH, 2007 - 2008
* Jan Engelhardt <jengelh@
computergmbh
.de>
* Jan Engelhardt <jengelh@
medozas
.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
net/netfilter/xt_hashlimit.c
View file @
408ffaa4
...
...
@@ -36,7 +36,7 @@
MODULE_LICENSE
(
"GPL"
);
MODULE_AUTHOR
(
"Harald Welte <laforge@netfilter.org>"
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
computergmbh
.de>"
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
medozas
.de>"
);
MODULE_DESCRIPTION
(
"Xtables: per hash-bucket rate-limit match"
);
MODULE_ALIAS
(
"ipt_hashlimit"
);
MODULE_ALIAS
(
"ip6t_hashlimit"
);
...
...
net/netfilter/xt_recent.c
View file @
408ffaa4
...
...
@@ -34,7 +34,7 @@
#include <linux/netfilter/xt_recent.h>
MODULE_AUTHOR
(
"Patrick McHardy <kaber@trash.net>"
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
computergmbh
.de>"
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
medozas
.de>"
);
MODULE_DESCRIPTION
(
"Xtables:
\"
recently-seen
\"
host matching for IPv4"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_ALIAS
(
"ipt_recent"
);
...
...
net/netfilter/xt_time.c
View file @
408ffaa4
/*
* xt_time
* Copyright © CC Computer Consultants GmbH, 2007
* Contact: <jengelh@computergmbh.de>
*
* based on ipt_time by Fabrice MARIE <fabrice@netfilter.org>
* This is a module which is used for time matching
...
...
@@ -264,7 +263,7 @@ static void __exit time_mt_exit(void)
module_init
(
time_mt_init
);
module_exit
(
time_mt_exit
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
computergmbh
.de>"
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
medozas
.de>"
);
MODULE_DESCRIPTION
(
"Xtables: time-based matching"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_ALIAS
(
"ipt_time"
);
...
...
net/netfilter/xt_u32.c
View file @
408ffaa4
...
...
@@ -3,7 +3,6 @@
*
* Original author: Don Cohen <don@isis.cs3-inc.com>
* (C) CC Computer Consultants GmbH, 2007
* Contact: <jengelh@computergmbh.de>
*/
#include <linux/module.h>
...
...
@@ -117,7 +116,7 @@ static void __exit u32_mt_exit(void)
module_init
(
u32_mt_init
);
module_exit
(
u32_mt_exit
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
computergmbh
.de>"
);
MODULE_AUTHOR
(
"Jan Engelhardt <jengelh@
medozas
.de>"
);
MODULE_DESCRIPTION
(
"Xtables: arbitrary byte matching"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_ALIAS
(
"ipt_u32"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment