Sebastian Reimers
Sebastian Reimers
As mentioned here: https://docs.microsoft.com/en-us/windows/win32/api/winsock/nf-winsock-recv For WSAECONNRESET and WSAECONNABORTED: `The application should close the socket as it is no longer usable.` Fixes never-ending recv handler warnings.
This helps backup applications to detect running apps
Playout time calculation for jitter buffer. It replaces frame calculation, since it uses a local time reference offset (based on clock rate). It's based on suggestions from this book: https://csperkins.org/standards/rtp-book.html...
malloc and free calls should be avoided in realtime audio context as much as possible. this makes aubuf write/read calls ~1.8x times faster.
Looks like there are some broken LibreSSL implementations https://github.com/baresip/re/pull/1127. Let's start with `test_tls_cli_conn_change_cert` and `tls_conn_change_cert`, this does not work within libressl since `SSL_certs_clear` is not supported (There is usually a...