mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 23:57:30 -04:00
Fix regression from r311568: collision of MSG_NOSIGNAL with MSG_MORETOCOME
lead to delayed send of data sent with sendto(MSG_NOSIGNAL). Submitted by: rrs
This commit is contained in:
parent
1c6fccc166
commit
cf66bb8db9
1 changed files with 1 additions and 1 deletions
|
|
@ -446,7 +446,7 @@ struct msghdr {
|
|||
#endif
|
||||
#ifdef _KERNEL
|
||||
#define MSG_SOCALLBCK 0x10000 /* for use by socket callbacks - soreceive (TCP) */
|
||||
#define MSG_MORETOCOME 0x20000 /* additional data pending */
|
||||
#define MSG_MORETOCOME 0x100000 /* additional data pending */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue