Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42d224aa authored by Al Viro's avatar Al Viro Committed by David S. Miller
Browse files

[NETFILTER]: More trivial annotations.

parent ef296f56
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#define TFTP_PORT 69

struct tftphdr {
	u_int16_t opcode;
	__be16 opcode;
};

#define TFTP_OPCODE_READ	1
+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ static struct ip_conntrack_helper amanda_helper = {
	.help = help,
	.name = "amanda",

	.tuple = { .src = { .u = { __constant_htons(10080) } },
	.tuple = { .src = { .u = { .udp = {.port = __constant_htons(10080) } } },
		   .dst = { .protonum = IPPROTO_UDP },
	},
	.mask = { .src = { .u = { 0xFFFF } },
+2 −2
Original line number Diff line number Diff line
@@ -1153,7 +1153,7 @@ static struct ip_conntrack_helper ip_conntrack_helper_q931 = {
	.me = THIS_MODULE,
	.max_expected = H323_RTP_CHANNEL_MAX * 4 + 4 /* T.120 and H.245 */ ,
	.timeout = 240,
	.tuple = {.src = {.u = {__constant_htons(Q931_PORT)}},
	.tuple = {.src = {.u = {.tcp = {.port = __constant_htons(Q931_PORT)}}},
		  .dst = {.protonum = IPPROTO_TCP}},
	.mask = {.src = {.u = {0xFFFF}},
		 .dst = {.protonum = 0xFF}},
@@ -1746,7 +1746,7 @@ static struct ip_conntrack_helper ip_conntrack_helper_ras = {
	.me = THIS_MODULE,
	.max_expected = 32,
	.timeout = 240,
	.tuple = {.src = {.u = {__constant_htons(RAS_PORT)}},
	.tuple = {.src = {.u = {.tcp = {.port = __constant_htons(RAS_PORT)}}},
		  .dst = {.protonum = IPPROTO_UDP}},
	.mask = {.src = {.u = {0xFFFE}},
		 .dst = {.protonum = 0xFF}},