diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-01-25 20:21:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-25 20:21:34 +0100 |
commit | 671d15a068e6fa3e9da8dab7f85466b0c4f9569e (patch) | |
tree | 05ee5bcd948b4bb06fcc431f41120db4ae6f2e3c | |
parent | 539167d71b00189a7ed36128af4fe3051ec3faf5 (diff) | |
parent | fbe5a07a24cb74e69e9bce5a6d74764fd678d2d3 (diff) |
Merge pull request #5 from Masaq-/fix-busywait
fix 100% CPU load
-rw-r--r-- | src/ptunnel.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/ptunnel.c b/src/ptunnel.c index 8fdf7a8..8766acf 100644 --- a/src/ptunnel.c +++ b/src/ptunnel.c @@ -532,7 +532,13 @@ void* pt_proxy(void *args) { max_sock = fwd_sock+1; pthread_mutex_lock(&chain_lock); for (cur = chain; cur; cur = cur->next) { - if (cur->sock) { + /* Only handle traffic if there is traffic on the socket, we have + * room in our send window AND we either don't use a password, or + * have been authenticated. + */ + if (cur->sock && cur->send_wait_ack < kPing_window_size && + (!opts.password || cur->authenticated)) + { FD_SET(cur->sock, &set); if (cur->sock >= max_sock) max_sock = cur->sock+1; @@ -567,13 +573,8 @@ void* pt_proxy(void *args) { remove_proxy_desc(cur, prev); continue; } - /* Only handle traffic if there is traffic on the socket, we have - * room in our send window AND we either don't use a password, or - * have been authenticated. - */ - if (FD_ISSET(cur->sock, &set) && cur->send_wait_ack < kPing_window_size && - (!opts.password || cur->authenticated)) - { + /* Handle TCP traffic */ + if (FD_ISSET(cur->sock, &set)) { bytes = recv(cur->sock, cur->buf, tcp_receive_buf_len, 0); if (bytes <= 0) { pt_log(kLog_info, "Connection closed or lost.\n"); |