mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix verbose printout failure in tcp reuse unit test.
This commit is contained in:
parent
89e2f2f753
commit
3ed5b62578
2 changed files with 3 additions and 0 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
- Move RSA and DSA to use OpenSSL 3.0.0 API.
|
- Move RSA and DSA to use OpenSSL 3.0.0 API.
|
||||||
- Move ECDSA functions to use OpenSSL 3.0.0 API.
|
- Move ECDSA functions to use OpenSSL 3.0.0 API.
|
||||||
- iana portlist update.
|
- iana portlist update.
|
||||||
|
- Fix verbose printout failure in tcp reuse unit test.
|
||||||
|
|
||||||
30 July 2021: Wouter
|
30 July 2021: Wouter
|
||||||
- Fix #515: Compilation against openssl 3.0.0 beta2 is failing to
|
- Fix #515: Compilation against openssl 3.0.0 beta2 is failing to
|
||||||
|
|
|
||||||
|
|
@ -347,6 +347,8 @@ log_reuse_tcp(enum verbosity_value v, const char* msg, struct reuse_tcp* reuse)
|
||||||
uint16_t port;
|
uint16_t port;
|
||||||
char addrbuf[128];
|
char addrbuf[128];
|
||||||
if(verbosity < v) return;
|
if(verbosity < v) return;
|
||||||
|
if(!reuse || !reuse->pending || !reuse->pending->c)
|
||||||
|
return;
|
||||||
addr_to_str(&reuse->addr, reuse->addrlen, addrbuf, sizeof(addrbuf));
|
addr_to_str(&reuse->addr, reuse->addrlen, addrbuf, sizeof(addrbuf));
|
||||||
port = ntohs(((struct sockaddr_in*)&reuse->addr)->sin_port);
|
port = ntohs(((struct sockaddr_in*)&reuse->addr)->sin_port);
|
||||||
verbose(v, "%s %s#%u fd %d", msg, addrbuf, (unsigned)port,
|
verbose(v, "%s %s#%u fd %d", msg, addrbuf, (unsigned)port,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue