mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 05:43:30 +01:00
Merge branch 'tor-resolve-bugfix' into 'main'
Create socket with correct family as given by sockshost See merge request tpo/core/tor!836
This commit is contained in:
commit
605f30c486
4
changes/bug40982
Normal file
4
changes/bug40982
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (tor-resolve):
|
||||
- Create socket with correct family as given by sockshost, fixes IPv6.
|
||||
Fixes bug 40982; bugfix on 0.4.9.0-alpha.
|
||||
|
@ -385,7 +385,7 @@ do_resolve(const char *hostname,
|
||||
tor_addr_make_unspec(result_addr);
|
||||
*result_hostname = NULL;
|
||||
|
||||
s = tor_open_socket(PF_INET,SOCK_STREAM,IPPROTO_TCP);
|
||||
s = tor_open_socket(sockshost->family,SOCK_STREAM,IPPROTO_TCP);
|
||||
if (s<0) {
|
||||
log_sock_error("creating_socket", -1);
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user