mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-21 14:21:48 +00:00
sctp: remove the typedef sctp_ipv4addr_param_t
This patch is to remove the typedef sctp_ipv4addr_param_t, and replace with struct sctp_ipv4addr_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:
parent
aed20a53a7
commit
a38905e6aa
3 changed files with 5 additions and 5 deletions
|
@ -273,10 +273,10 @@ struct sctp_init_chunk {
|
|||
|
||||
|
||||
/* Section 3.3.2.1. IPv4 Address Parameter (5) */
|
||||
typedef struct sctp_ipv4addr_param {
|
||||
struct sctp_ipv4addr_param {
|
||||
struct sctp_paramhdr param_hdr;
|
||||
struct in_addr addr;
|
||||
} sctp_ipv4addr_param_t;
|
||||
struct in_addr addr;
|
||||
};
|
||||
|
||||
/* Section 3.3.2.1. IPv6 Address Parameter (6) */
|
||||
typedef struct sctp_ipv6addr_param {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue