Browse Source

fix a bug

pull/89/head
Max Lv 10 years ago
parent
commit
57eb040f50
1 changed files with 2 additions and 2 deletions
  1. 4
      src/local.c

4
src/local.c

@ -432,8 +432,8 @@ static void server_recv_cb (EV_P_ ev_io *w, int revents)
LOGD("connect to %s:%s", host, port);
}
if ((request->atyp == 1 && acl_contains_ip(host))
|| (request->atyp = 3 && acl_contains_domain(host)))
if ((acl && request->atyp == 1 && acl_contains_ip(host))
|| (acl && request->atyp = 3 && acl_contains_domain(host)))
{
remote = connect_to_remote(server->listener, host, port);
remote->direct = 1;

Loading…
Cancel
Save