Age | Commit message (Collapse) | Author |
|
|
|
modify debugging status
|
|
|
|
|
|
They're passed as HDRS, but the lookups/Makefile referenced the PHDRS
(which was empty)
E.g. touch src/functions.h didn't force a rebuild of the lookups.a
|
|
This should fix a Solaris build error probably inserted by 92583637b2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
complex coding.
|
|
|
|
|
|
|
|
|
|
structs.h:757:18: error: ‘NS_MAXMSG’ undeclared here (not in a function); did you mean ‘N_MASC’?
uschar answer[NS_MAXMSG]; /* the answer itself */
|
|
|
|
This is not only safer (vs. unexpected expansions), but more efficient
|
|
|
|
elements. Bug 2701
|
|
|
|
2694
|
|
|
|
|
|
|
|
before before feeding the message
This is to keep debug output in similar order on different platforms
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Broken-by: 3eb0bcd7a1
|
|
|
|
|
|
|
|
|
|
|
|
Linux was behaving oddly with the TCP_CORK method, and using MSG_MORE
is one fewer syscall.
|
|
TLS-on-connect client connections
|
|
We can't get the QUICKACK turned off on the accepted socket fast enough to
stop the ACK for the ClientHello - but we get the rest, under OpenSSL.
|
|
|
|
|
|
|
|
Bug 2687
|