mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-20 10:12:15 +01:00
Merge remote branch 'origin/maint-0.2.1'
This commit is contained in:
commit
a6a1b8b815
@ -66,6 +66,9 @@ Changes in version 0.2.1.23 - 2010-0?-??
|
|||||||
on, detect the OpenSSL version at run-time, not compile time. We
|
on, detect the OpenSSL version at run-time, not compile time. We
|
||||||
need to do this because Apple doesn't update its dev-tools headers
|
need to do this because Apple doesn't update its dev-tools headers
|
||||||
when it updates its libraries in a security patch.
|
when it updates its libraries in a security patch.
|
||||||
|
- Refactor resolve_my_address() a little, to not use gethostbyname()
|
||||||
|
anymore. Fixes bug 1244; bugfix on 0.0.2pre25. Reported by Mike
|
||||||
|
Mestnik.
|
||||||
|
|
||||||
o Minor features:
|
o Minor features:
|
||||||
- Avoid a mad rush at the beginning of each month when each client
|
- Avoid a mad rush at the beginning of each month when each client
|
||||||
|
@ -2193,7 +2193,7 @@ resolve_my_address(int warn_severity, or_options_t *options,
|
|||||||
uint32_t *addr_out, char **hostname_out)
|
uint32_t *addr_out, char **hostname_out)
|
||||||
{
|
{
|
||||||
struct in_addr in;
|
struct in_addr in;
|
||||||
struct hostent *rent;
|
uint32_t addr;
|
||||||
char hostname[256];
|
char hostname[256];
|
||||||
int explicit_ip=1;
|
int explicit_ip=1;
|
||||||
int explicit_hostname=1;
|
int explicit_hostname=1;
|
||||||
@ -2223,8 +2223,7 @@ resolve_my_address(int warn_severity, or_options_t *options,
|
|||||||
if (tor_inet_aton(hostname, &in) == 0) {
|
if (tor_inet_aton(hostname, &in) == 0) {
|
||||||
/* then we have to resolve it */
|
/* then we have to resolve it */
|
||||||
explicit_ip = 0;
|
explicit_ip = 0;
|
||||||
rent = (struct hostent *)gethostbyname(hostname);
|
if(!tor_lookup_hostname(hostname, &addr)) {
|
||||||
if (!rent) {
|
|
||||||
uint32_t interface_ip;
|
uint32_t interface_ip;
|
||||||
|
|
||||||
if (explicit_hostname) {
|
if (explicit_hostname) {
|
||||||
@ -2247,8 +2246,7 @@ resolve_my_address(int warn_severity, or_options_t *options,
|
|||||||
"local interface. Using that.", tmpbuf);
|
"local interface. Using that.", tmpbuf);
|
||||||
strlcpy(hostname, "<guessed from interfaces>", sizeof(hostname));
|
strlcpy(hostname, "<guessed from interfaces>", sizeof(hostname));
|
||||||
} else {
|
} else {
|
||||||
tor_assert(rent->h_length == 4);
|
in.s_addr = htonl(addr);
|
||||||
memcpy(&in.s_addr, rent->h_addr, rent->h_length);
|
|
||||||
|
|
||||||
if (!explicit_hostname &&
|
if (!explicit_hostname &&
|
||||||
is_internal_IP(ntohl(in.s_addr), 0)) {
|
is_internal_IP(ntohl(in.s_addr), 0)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user