Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7887
b: refs/heads/master
c: 3a93481
h: refs/heads/master
i:
  7885: 82cb658
  7883: 3926698
  7879: 626d5c8
  7871: 4c285d4
v: v3
  • Loading branch information
Andrew Morton authored and David S. Miller committed Sep 8, 2005
1 parent d5b2daa commit ef8e504
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ce723d8e048ef98ea64d12379e3921c933f5b3e0
refs/heads/master: 3a93481589dc80d9ff9082731f35031b0345442e
24 changes: 20 additions & 4 deletions trunk/net/ipv4/netfilter/ip_conntrack_netbios_ns.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,28 @@ static int help(struct sk_buff **pskb,
static struct ip_conntrack_helper helper = {
.name = "netbios-ns",
.tuple = {
.src.u.udp.port = __constant_htons(137),
.dst.protonum = IPPROTO_UDP,
.src = {
.u = {
.udp = {
.port = __constant_htons(137),
}
}
},
.dst = {
.protonum = IPPROTO_UDP,
},
},
.mask = {
.src.u.udp.port = 0xFFFF,
.dst.protonum = 0xFF,
.src = {
.u = {
.udp = {
.port = 0xFFFF,
}
}
},
.dst = {
.protonum = 0xFF,
},
},
.max_expected = 1,
.me = THIS_MODULE,
Expand Down

0 comments on commit ef8e504

Please sign in to comment.