Update a comment to get it aligned with the code change.

Reported by:	brueffer@
This commit is contained in:
Michael Tuexen 2015-03-11 15:40:29 +00:00
parent 975c975bf0
commit 5ba11c4c2e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279889

View File

@ -389,7 +389,10 @@ typedef struct callout sctp_os_timer_t;
#define SCTP_CLEAR_SO_NBIO(so) ((so)->so_state &= ~SS_NBIO)
/* get the socket type */
#define SCTP_SO_TYPE(so) ((so)->so_type)
/* Use a macro for renaming sb_cc to sb_ccc */
/* Use a macro for renaming sb_cc to sb_acc.
* Initially sb_ccc was used, but this broke select() when used
* with SCTP sockets.
*/
#define sb_cc sb_acc
/* reserve sb space for a socket */
#define SCTP_SORESERVE(so, send, recv) soreserve(so, send, recv)