aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sctp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/sctp.h')
-rw-r--r--include/linux/sctp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h
index 7a4804c4a593..85540ec4b561 100644
--- a/include/linux/sctp.h
+++ b/include/linux/sctp.h
@@ -57,12 +57,12 @@
57#include <uapi/linux/sctp.h> 57#include <uapi/linux/sctp.h>
58 58
59/* Section 3.1. SCTP Common Header Format */ 59/* Section 3.1. SCTP Common Header Format */
60typedef struct sctphdr { 60struct sctphdr {
61 __be16 source; 61 __be16 source;
62 __be16 dest; 62 __be16 dest;
63 __be32 vtag; 63 __be32 vtag;
64 __le32 checksum; 64 __le32 checksum;
65} sctp_sctphdr_t; 65};
66 66
67static inline struct sctphdr *sctp_hdr(const struct sk_buff *skb) 67static inline struct sctphdr *sctp_hdr(const struct sk_buff *skb)
68{ 68{