Skip to content

Commit

Permalink
[IPV4]: annotate ipv4 address fields in struct ip_msfilter and struct…
Browse files Browse the repository at this point in the history
… ip_mreq_source

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Al Viro authored and David S. Miller committed Sep 29, 2006
1 parent 4b06a7c commit 00a5020
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/linux/in.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,17 @@ struct ip_mreqn
};

struct ip_mreq_source {
__u32 imr_multiaddr;
__u32 imr_interface;
__u32 imr_sourceaddr;
__be32 imr_multiaddr;
__be32 imr_interface;
__be32 imr_sourceaddr;
};

struct ip_msfilter {
__u32 imsf_multiaddr;
__u32 imsf_interface;
__be32 imsf_multiaddr;
__be32 imsf_interface;
__u32 imsf_fmode;
__u32 imsf_numsrc;
__u32 imsf_slist[1];
__be32 imsf_slist[1];
};

#define IP_MSFILTER_SIZE(numsrc) \
Expand Down

0 comments on commit 00a5020

Please sign in to comment.