aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/sctp/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/sctp/structs.h')
-rw-r--r--include/net/sctp/structs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 2aa61ac9a9f3..953a73f9689c 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -713,7 +713,7 @@ struct sctp_chunk {
713 unsigned long sent_at; 713 unsigned long sent_at;
714 714
715 /* What is the origin IP address for this chunk? */ 715 /* What is the origin IP address for this chunk? */
716 union sctp_addr source; 716 union sctp_addr source_h;
717 /* Destination address for this chunk. */ 717 /* Destination address for this chunk. */
718 union sctp_addr dest; 718 union sctp_addr dest;
719 719
@@ -756,7 +756,7 @@ const union sctp_addr *sctp_source(const struct sctp_chunk *chunk);
756/* This is a structure for holding either an IPv6 or an IPv4 address. */ 756/* This is a structure for holding either an IPv6 or an IPv4 address. */
757struct sctp_sockaddr_entry { 757struct sctp_sockaddr_entry {
758 struct list_head list; 758 struct list_head list;
759 union sctp_addr a; 759 union sctp_addr a_h;
760 __u8 use_as_src; 760 __u8 use_as_src;
761}; 761};
762 762
@@ -842,7 +842,7 @@ struct sctp_transport {
842 int dead; 842 int dead;
843 843
844 /* This is the peer's IP address and port. */ 844 /* This is the peer's IP address and port. */
845 union sctp_addr ipaddr; 845 union sctp_addr ipaddr_h;
846 846
847 /* These are the functions we call to handle LLP stuff. */ 847 /* These are the functions we call to handle LLP stuff. */
848 struct sctp_af *af_specific; 848 struct sctp_af *af_specific;
@@ -900,7 +900,7 @@ struct sctp_transport {
900 /* Destination */ 900 /* Destination */
901 struct dst_entry *dst; 901 struct dst_entry *dst;
902 /* Source address. */ 902 /* Source address. */
903 union sctp_addr saddr; 903 union sctp_addr saddr_h;
904 904
905 /* When was the last time(in jiffies) that a data packet was sent on 905 /* When was the last time(in jiffies) that a data packet was sent on
906 * this transport? This is used to adjust the cwnd when the transport 906 * this transport? This is used to adjust the cwnd when the transport