mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
r6918@Kushana: nickm | 2006-07-26 15:22:28 -0400
Fix compilation for eventdns dns.c with split structs. svn:r6908
This commit is contained in:
parent
ec82db6995
commit
0bc741ba7f
@ -1173,7 +1173,7 @@ eventdns_callback(int result, char type, int count, int ttl, void *addresses,
|
||||
}
|
||||
|
||||
static int
|
||||
assign_to_dnsworker(connection_t *exitconn)
|
||||
assign_to_dnsworker(edge_connection_t *exitconn)
|
||||
{
|
||||
char *addr = tor_strdup(exitconn->_base.address);
|
||||
int r;
|
||||
@ -1184,7 +1184,7 @@ assign_to_dnsworker(connection_t *exitconn)
|
||||
if (r) {
|
||||
log_warn(LD_EXIT, "eventdns rejected address %s: error %d.",
|
||||
escaped_safe_str(addr), r);
|
||||
if (exitconn->purpose == EXIT_PURPOSE_RESOLVE) {
|
||||
if (exitconn->_base.purpose == EXIT_PURPOSE_RESOLVE) {
|
||||
if (eventdns_err_is_transient(r))
|
||||
send_resolved_cell(exitconn, RESOLVED_TYPE_ERROR_TRANSIENT);
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user