sctp: remove the typedef sctp_cookie_param_t

This patch is to remove the typedef sctp_cookie_param_t, and
replace with struct sctp_cookie_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>
This commit is contained in:
Xin Long
2017-07-23 09:34:27 +08:00
committed by David S. Miller
parent cb1844c472
commit f48ef4c7f7
2 changed files with 12 additions and 10 deletions

View File

@@ -342,10 +342,10 @@ struct sctp_initack_chunk {
};
/* Section 3.3.3.1 State Cookie (7) */
typedef struct sctp_cookie_param {
struct sctp_cookie_param {
struct sctp_paramhdr p;
__u8 body[0];
} sctp_cookie_param_t;
};
/* Section 3.3.3.1 Unrecognized Parameters (8) */
typedef struct sctp_unrecognized_param {