Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
an internal static object
See https://github.com/randombit/botan/issues/761
|
|
|
|
(which apparently doesn’t work on freebsd)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
If available in Botan.
There is an issue where, if botan supports it but we don’t enable it, then
the TLS handshake may fail with some servers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fix #3211
|
|
|
|
This way, TCPSocketHandler only deal with the message sending/receiving, not
the connect() or anything else. This will be used for implementing servers
(because when a client is accepted, we don’t need all the connect() and dns
resolution stuff).
|
|
|
|
|
|
|
|
fix #3171
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The version with the vector, that can be disabled etc, is “very” slow, so we
use unique_ptr when we don’t need to disable it, and when it only contains
one function
|
|
“It is possible to select(2) or poll(2) for completion by selecting the
socket for writing”
Yeah, sure, “writing”…
|
|
|
|
|
|
duplication
|
|
See
https://lab.louiz.org/louiz/biboumi/issues/3215
https://github.com/andikleen/glibc/blob/master/time/strptime_l.c#L746-L747
for why strptime() sucks
We use std::get_time now, to parse the date and time. And we parse the
timezone by hand.
fix #3215
|
|
|
|
fix coverity CID 134470
|
|
fix coverity CID 134469
|
|
fix #3069
|
|
fix #3207
|
|
|
|
Because some plateform accept Z and z, but some only accept z…
|