Module Name: src Committed By: christos Date: Sun Dec 16 17:46:58 UTC 2018
Modified Files: src/sys/netinet: dccp_usrreq.c tcp_usrreq.c src/sys/sys: socketvar.h Log Message: sbspace() does not return negative values anymore and that broke OOB data sending. Instead of depending on negative values, account for the 1024 bytes sosend() adds so that it can use all the space here in a separate function sbspace_oob(). Idea from mlelstv@ To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/netinet/dccp_usrreq.c cvs rdiff -u -r1.221 -r1.222 src/sys/netinet/tcp_usrreq.c cvs rdiff -u -r1.158 -r1.159 src/sys/sys/socketvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.