summaryrefslogtreecommitdiffstats
path: root/include/linux/sctp.h
diff options
context:
space:
mode:
authorXin Long <lucien.xin@gmail.com>2017-07-16 23:29:50 -0400
committerDavid S. Miller <davem@davemloft.net>2017-07-16 23:52:13 -0400
commit00987cc07e3f0f01699800cd89adf13a908cdee5 (patch)
tree4ef6dd5f025cb347a3a6acee2b7453a70ac77285 /include/linux/sctp.h
parenta38905e6aa1a758af003b80f3318196eadb86dfe (diff)
sctp: remove the typedef sctp_ipv6addr_param_t
This patch is to remove the typedef sctp_ipv6addr_param_t, and replace with struct sctp_ipv6addr_param in the places where it's using this typedef. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
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 e42095d7ce57..6b45c8a38642 100644
--- a/include/linux/sctp.h
+++ b/include/linux/sctp.h
@@ -279,10 +279,10 @@ struct sctp_ipv4addr_param {
279}; 279};
280 280
281/* Section 3.3.2.1. IPv6 Address Parameter (6) */ 281/* Section 3.3.2.1. IPv6 Address Parameter (6) */
282typedef struct sctp_ipv6addr_param { 282struct sctp_ipv6addr_param {
283 struct sctp_paramhdr param_hdr; 283 struct sctp_paramhdr param_hdr;
284 struct in6_addr addr; 284 struct in6_addr addr;
285} sctp_ipv6addr_param_t; 285};
286 286
287/* Section 3.3.2.1 Cookie Preservative (9) */ 287/* Section 3.3.2.1 Cookie Preservative (9) */
288typedef struct sctp_cookie_preserve_param { 288typedef struct sctp_cookie_preserve_param {