sctp: remove the typedef sctp_cid_t
This patch is to remove the typedef sctp_cid_t, and replace with struct sctp_cid 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:

committed by
David S. Miller

parent
922dbc5be2
commit
6d85e68f4c
@@ -82,7 +82,7 @@ struct sctp_chunkhdr {
|
||||
* Value field. It takes a value from 0 to 254. The value of 255 is
|
||||
* reserved for future use as an extension field.
|
||||
*/
|
||||
typedef enum {
|
||||
enum sctp_cid {
|
||||
SCTP_CID_DATA = 0,
|
||||
SCTP_CID_INIT = 1,
|
||||
SCTP_CID_INIT_ACK = 2,
|
||||
@@ -109,7 +109,7 @@ typedef enum {
|
||||
SCTP_CID_ASCONF = 0xC1,
|
||||
SCTP_CID_ASCONF_ACK = 0x80,
|
||||
SCTP_CID_RECONF = 0x82,
|
||||
} sctp_cid_t; /* enum */
|
||||
}; /* enum */
|
||||
|
||||
|
||||
/* Section 3.2
|
||||
|
Reference in New Issue
Block a user