mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Patch from goodell for task 131: Do not die on internal address if we are not publishing.
svn:r4186
This commit is contained in:
parent
c8ad2fc003
commit
13126eeb0f
@ -952,7 +952,7 @@ print_usage(void)
|
||||
* in <b>addr</b>.
|
||||
*/
|
||||
int
|
||||
resolve_my_address(const char *address, uint32_t *addr)
|
||||
resolve_my_address(or_options_t *options, uint32_t *addr)
|
||||
{
|
||||
struct in_addr in;
|
||||
struct hostent *rent;
|
||||
@ -960,6 +960,7 @@ resolve_my_address(const char *address, uint32_t *addr)
|
||||
int explicit_ip=1;
|
||||
char tmpbuf[INET_NTOA_BUF_LEN];
|
||||
static uint32_t old_addr=0;
|
||||
const char *address = options->Address;
|
||||
|
||||
tor_assert(addr);
|
||||
|
||||
@ -1001,6 +1002,7 @@ resolve_my_address(const char *address, uint32_t *addr)
|
||||
log_fn(LOG_WARN,"Address '%s' resolves to private IP '%s'. "
|
||||
"Please set the Address config option to be the IP you want to use.",
|
||||
hostname, tmpbuf);
|
||||
if(!options->NoPublish)
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -1299,7 +1301,7 @@ options_validate(or_options_t *options)
|
||||
if (server_mode(options)) {
|
||||
/* confirm that our address isn't broken, so we can complain now */
|
||||
uint32_t tmp;
|
||||
if (resolve_my_address(options->Address, &tmp) < 0)
|
||||
if (resolve_my_address(options, &tmp) < 0)
|
||||
result = -1;
|
||||
}
|
||||
|
||||
|
@ -1249,7 +1249,7 @@ const char *safe_str(const char *address);
|
||||
int config_get_lines(char *string, struct config_line_t **result);
|
||||
void config_free_lines(struct config_line_t *front);
|
||||
int config_trial_assign(struct config_line_t *list, int reset);
|
||||
int resolve_my_address(const char *address, uint32_t *addr);
|
||||
int resolve_my_address(or_options_t *options, uint32_t *addr);
|
||||
void options_init(or_options_t *options);
|
||||
int init_from_config(int argc, char **argv);
|
||||
int config_init_logs(or_options_t *options, int validate_only);
|
||||
|
@ -672,7 +672,7 @@ int router_rebuild_descriptor(int force) {
|
||||
if (!desc_is_dirty && !force)
|
||||
return 0;
|
||||
|
||||
if (resolve_my_address(options->Address, &addr) < 0) {
|
||||
if (resolve_my_address(options, &addr) < 0) {
|
||||
log_fn(LOG_WARN,"options->Address didn't resolve into an IP.");
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user