sctp: remove the typedef sctp_sackhdr_t

This patch is to remove the typedef sctp_sackhdr_t, and replace
with struct sctp_sackhdr 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:32 +08:00
committed by David S. Miller
parent afd93b7be6
commit 787310859d
3 changed files with 6 additions and 6 deletions

View File

@@ -373,17 +373,17 @@ union sctp_sack_variable {
__be32 dup;
};
typedef struct sctp_sackhdr {
struct sctp_sackhdr {
__be32 cum_tsn_ack;
__be32 a_rwnd;
__be16 num_gap_ack_blocks;
__be16 num_dup_tsns;
union sctp_sack_variable variable[0];
} sctp_sackhdr_t;
};
typedef struct sctp_sack_chunk {
struct sctp_chunkhdr chunk_hdr;
sctp_sackhdr_t sack_hdr;
struct sctp_sackhdr sack_hdr;
} sctp_sack_chunk_t;