Re: equivalent flag or code to MSG_MORE in NetBSD?

2019-06-10 Thread Erik Fair
There is an ancient BSD ioctl(2) which might cover this case: FIONREAD. The point of it back in the day was to be able to know just how much data could be read from a file descriptor (e.g., from TTY input buffers) without blocking. Erik Fair

Re: equivalent flag or code to MSG_MORE in NetBSD?

2019-06-08 Thread David Young
On Fri, Jun 07, 2019 at 03:27:28PM +, n...@n0.is wrote: > For high performance webservers, is there a method or set of methods > (where by method I mean any pseudo-code or code related solution) > which works for NetBSD as a drop-in equivalent of MSG_MORE? I don't know of a drop-in

equivalent flag or code to MSG_MORE in NetBSD?

2019-06-07 Thread ng0
Hi folx, My Google Summer of Code project at GNU libmicrohttpd is - among other things - focused on analyzing and adjusting syscalls on a range of Operating Systems. This includes NetBSD, FreeBSD, Windows 10 cygwin, Debian Linux. I was made aware of MSG_MORE in the Linux kernel which I