aboutsummaryrefslogtreecommitdiff
path: root/include/net/sctp/structs.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-11-20 17:24:36 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:27:07 -0800
commitc9c938cb050e6d45088c5c39e4097742e875c496 (patch)
treeaac9ff2673584fd66e030c8ab6068f5cef10e7e9 /include/net/sctp/structs.h
parent7dcdbd9579c944bb833f95a7f276d01f49161734 (diff)
[SCTP]: flip_to_{h,n}() are not needed anymore.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sctp/structs.h')
-rw-r--r--include/net/sctp/structs.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 02f1fd5de4b..d44202b0487 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -74,28 +74,6 @@ union sctp_addr {
struct sockaddr sa;
};
-static inline void flip_to_n(union sctp_addr *to, const union sctp_addr *from)
-{
- size_t len;
- if (from->sa.sa_family == AF_INET6)
- len = sizeof(struct sockaddr_in6);
- else
- len = sizeof(struct sockaddr);
- memcpy(to, from, len);
- to->v4.sin_port = htons(from->v4.sin_port);
-}
-
-static inline void flip_to_h(union sctp_addr *to, const union sctp_addr *from)
-{
- size_t len;
- if (from->sa.sa_family == AF_INET6)
- len = sizeof(struct sockaddr_in6);
- else
- len = sizeof(struct sockaddr);
- memcpy(to, from, len);
- to->v4.sin_port = ntohs(from->v4.sin_port);
-}
-
/* Forward declarations for data structures. */
struct sctp_globals;
struct sctp_endpoint;