aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp/bind_addr.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-11-20 20:04:42 -0500
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-03 00:26:30 -0500
commit2a6fd78adec062f16f8662563115679e669efaca (patch)
tree3c2e93e5cccb7a11176079509e55f103464b1b98 /net/sctp/bind_addr.c
parent09ef7fecea40c5e4c0dfe35bed3f0ed8da554cf5 (diff)
[SCTP] embedded sctp_addr: net-endian mirrors
Add sctp_chunk->source, sctp_sockaddr_entry->a, sctp_transport->ipaddr and sctp_transport->saddr, maintain them as net-endian mirrors of their host-endian counterparts. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/bind_addr.c')
-rw-r--r--net/sctp/bind_addr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sctp/bind_addr.c b/net/sctp/bind_addr.c
index b8115cb31ae3..2b36e4238170 100644
--- a/net/sctp/bind_addr.c
+++ b/net/sctp/bind_addr.c
@@ -163,6 +163,8 @@ int sctp_add_bind_addr(struct sctp_bind_addr *bp, union sctp_addr *new,
163 if (!addr->a_h.v4.sin_port) 163 if (!addr->a_h.v4.sin_port)
164 addr->a_h.v4.sin_port = bp->port; 164 addr->a_h.v4.sin_port = bp->port;
165 165
166 flip_to_n(&addr->a, &addr->a_h);
167
166 addr->use_as_src = use_as_src; 168 addr->use_as_src = use_as_src;
167 169
168 INIT_LIST_HEAD(&addr->list); 170 INIT_LIST_HEAD(&addr->list);