Browse Source

[SCTP]: sctp_association ->peer.i is a host-endian analog of sctp_inthdr.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Al Viro 18 năm trước cách đây
mục cha
commit
e1857ea28d
1 tập tin đã thay đổi với 8 bổ sung1 xóa
  1. 8 1
      include/net/sctp/structs.h

+ 8 - 1
include/net/sctp/structs.h

@@ -1314,6 +1314,13 @@ int sctp_process_init(struct sctp_association *, sctp_cid_t cid,
 __u32 sctp_generate_tag(const struct sctp_endpoint *);
 __u32 sctp_generate_tag(const struct sctp_endpoint *);
 __u32 sctp_generate_tsn(const struct sctp_endpoint *);
 __u32 sctp_generate_tsn(const struct sctp_endpoint *);
 
 
+struct sctp_inithdr_host {
+	__u32 init_tag;
+	__u32 a_rwnd;
+	__u16 num_outbound_streams;
+	__u16 num_inbound_streams;
+	__u32 initial_tsn;
+};
 
 
 /* RFC2960
 /* RFC2960
  *
  *
@@ -1484,7 +1491,7 @@ struct sctp_association {
 		 */
 		 */
 		__be16 addip_disabled_mask;
 		__be16 addip_disabled_mask;
 
 
-		struct sctp_inithdr i;
+		struct sctp_inithdr_host i;
 		int cookie_len;
 		int cookie_len;
 		void *cookie;
 		void *cookie;