diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-07-16 23:29:52 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-16 23:52:13 -0400 |
commit | df9af0063f154c1a4f22a5570749d185d080cf56 (patch) | |
tree | b3593035b7fea4f88391e03e5b1e95a465394dd8 /include/linux/sctp.h | |
parent | 365ddb65e77f6b99d4aba09e0d8a096aada57815 (diff) |
sctp: remove the typedef sctp_hostname_param_t
Remove this typedef, there is even no places using it.
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.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h index d8f9d8f8649b..c43e9067d41a 100644 --- a/include/linux/sctp.h +++ b/include/linux/sctp.h | |||
@@ -291,10 +291,10 @@ struct sctp_cookie_preserve_param { | |||
291 | }; | 291 | }; |
292 | 292 | ||
293 | /* Section 3.3.2.1 Host Name Address (11) */ | 293 | /* Section 3.3.2.1 Host Name Address (11) */ |
294 | typedef struct sctp_hostname_param { | 294 | struct sctp_hostname_param { |
295 | struct sctp_paramhdr param_hdr; | 295 | struct sctp_paramhdr param_hdr; |
296 | uint8_t hostname[0]; | 296 | uint8_t hostname[0]; |
297 | } sctp_hostname_param_t; | 297 | }; |
298 | 298 | ||
299 | /* Section 3.3.2.1 Supported Address Types (12) */ | 299 | /* Section 3.3.2.1 Supported Address Types (12) */ |
300 | typedef struct sctp_supported_addrs_param { | 300 | typedef struct sctp_supported_addrs_param { |