Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
a4c89051
Commit
a4c89051
authored
Feb 02, 2010
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6
parents
55bdeed9
e578756c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
net/netfilter/nf_conntrack_netlink.c
net/netfilter/nf_conntrack_netlink.c
+2
-1
net/netfilter/nf_conntrack_sip.c
net/netfilter/nf_conntrack_sip.c
+1
-1
No files found.
net/netfilter/nf_conntrack_netlink.c
View file @
a4c89051
...
...
@@ -1437,8 +1437,9 @@ ctnetlink_exp_dump_mask(struct sk_buff *skb,
struct
nlattr
*
nest_parms
;
memset
(
&
m
,
0xFF
,
sizeof
(
m
));
m
.
src
.
u
.
all
=
mask
->
src
.
u
.
all
;
memcpy
(
&
m
.
src
.
u3
,
&
mask
->
src
.
u3
,
sizeof
(
m
.
src
.
u3
));
m
.
src
.
u
.
all
=
mask
->
src
.
u
.
all
;
m
.
dst
.
protonum
=
tuple
->
dst
.
protonum
;
nest_parms
=
nla_nest_start
(
skb
,
CTA_EXPECT_MASK
|
NLA_F_NESTED
);
if
(
!
nest_parms
)
...
...
net/netfilter/nf_conntrack_sip.c
View file @
a4c89051
...
...
@@ -376,7 +376,7 @@ int ct_sip_get_header(const struct nf_conn *ct, const char *dptr,
dptr
+=
hdr
->
len
;
else
if
(
hdr
->
cname
&&
limit
-
dptr
>=
hdr
->
clen
+
1
&&
strnicmp
(
dptr
,
hdr
->
cname
,
hdr
->
clen
)
==
0
&&
!
isalpha
(
*
(
dptr
+
hdr
->
clen
+
1
)))
!
isalpha
(
*
(
dptr
+
hdr
->
clen
)))
dptr
+=
hdr
->
clen
;
else
continue
;
...
...
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