diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2009-03-28 16:38:31 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-29 08:55:58 +0200 |
commit | e7557af56a576762a655f1aaaded253ad14c5958 (patch) | |
tree | 7594980090f4c6b8fcfe1be554d94096b9d80db3 /include | |
parent | netfilter: fix endian bug in conntrack printks (diff) | |
download | linux-e7557af56a576762a655f1aaaded253ad14c5958.tar.xz linux-e7557af56a576762a655f1aaaded253ad14c5958.zip |
netpoll: store local and remote ip in net-endian
Allows for the removal of byteswapping in some places and
the removal of HIPQUAD (replaced by %pI4).
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netpoll.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netpoll.h b/include/linux/netpoll.h index de99025f2c5d..2524267210d3 100644 --- a/include/linux/netpoll.h +++ b/include/linux/netpoll.h @@ -18,7 +18,7 @@ struct netpoll { const char *name; void (*rx_hook)(struct netpoll *, int, char *, int); - u32 local_ip, remote_ip; + __be32 local_ip, remote_ip; u16 local_port, remote_port; u8 remote_mac[ETH_ALEN]; }; |