Ignore events until the remote connection is established

This commit is contained in:
ruti 2024-11-13 17:44:46 +03:00
parent a6ee6ddb92
commit 4012b14bda
2 changed files with 2 additions and 1 deletions

View file

@ -409,6 +409,7 @@ int on_first_tunnel(struct poolhd *pool,
uniperror("mod_etype"); uniperror("mod_etype");
return -1; return -1;
} }
val->pair->type = EV_FIRST_TUNNEL;
return send_saved_req(pool, val->pair, buffer, bfsize); return send_saved_req(pool, val->pair, buffer, bfsize);
} }
ssize_t n = tcp_recv_hook(pool, val, buffer, bfsize); ssize_t n = tcp_recv_hook(pool, val, buffer, bfsize);

View file

@ -439,7 +439,7 @@ int create_conn(struct poolhd *pool,
pair->in6 = dst->in6; pair->in6 = dst->in6;
#endif #endif
pair->flag = FLAG_CONN; pair->flag = FLAG_CONN;
//val->type = EV_IGNORE; val->type = EV_IGNORE;
return 0; return 0;
} }