sctp.h | sctp.h | |||
---|---|---|---|---|
skipping to change at line 674 | skipping to change at line 674 | |||
/* UNKNOWN: Peer address passed by the upper layer in sendmsg or connect[x] | /* UNKNOWN: Peer address passed by the upper layer in sendmsg or connect[x] | |||
* calls. | * calls. | |||
* UNCONFIRMED: Peer address received in INIT/INIT-ACK address parameters. | * UNCONFIRMED: Peer address received in INIT/INIT-ACK address parameters. | |||
* Not yet confirmed by a heartbeat and not available for data | * Not yet confirmed by a heartbeat and not available for data | |||
* transfers. | * transfers. | |||
* ACTIVE : Peer address confirmed, active and available for data transfers . | * ACTIVE : Peer address confirmed, active and available for data transfers . | |||
* INACTIVE: Peer address inactive and not available for data transfers. | * INACTIVE: Peer address inactive and not available for data transfers. | |||
*/ | */ | |||
enum sctp_spinfo_state { | enum sctp_spinfo_state { | |||
SCTP_INACTIVE, | SCTP_INACTIVE, | |||
SCTP_PF, | ||||
SCTP_ACTIVE, | SCTP_ACTIVE, | |||
SCTP_UNCONFIRMED | SCTP_UNCONFIRMED, | |||
SCTP_UNKNOWN = 0xffff | ||||
}; | }; | |||
/* | /* | |||
* 7.2.1 Association Status (SCTP_STATUS) | * 7.2.1 Association Status (SCTP_STATUS) | |||
* | * | |||
* Applications can retrieve current status information about an | * Applications can retrieve current status information about an | |||
* association, including association state, peer receiver window size, | * association, including association state, peer receiver window size, | |||
* number of unacked data chunks, and number of data chunks pending | * number of unacked data chunks, and number of data chunks pending | |||
* receipt. This information is read-only. The following structure is | * receipt. This information is read-only. The following structure is | |||
* used to access this information: | * used to access this information: | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 3 lines changed or added | |||