Skip to content

Commit

Permalink
pidlist.c: ACT shows destination IP-address, when internal proxy …
Browse files Browse the repository at this point in the history
…servers are used
  • Loading branch information
mezantrop committed Aug 26, 2024
1 parent c79cdf6 commit 102b5b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# CHANGELOG

* **2024.08.23 Current**
* **2024.08.26 Current**
* `pidlist.c`: `ACT` shows destination IP-address, when internal proxy servers are used
* `ts-warp.c`: `-D 0..512` DPI bypass fragment size by default 0 - disabled; To enable use a positive value, e.g., 2

* **2024.08.15 ts-warp-1.5.5, gui-warp-1.0.25 (gui-warp-v1.0.30-mac), ns-warp-1.0.7**
Expand Down
1 change: 1 addition & 0 deletions pidlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ int pidlist_update_traffic(struct pid_list *root, struct traffic_data traffic) {
if (c && c->pid == traffic.pid) {
c->traffic.timestamp = traffic.timestamp;
c->traffic.cbytes = traffic.cbytes;
c->traffic.daddr = traffic.daddr;
c->traffic.dbytes = traffic.dbytes;
return 0;
}
Expand Down
1 change: 1 addition & 0 deletions pidlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#include <time.h>
#include <netinet/in.h>

#include "utility.h"

/* ------------------------------------------------------------------------------------------------------------------ */
Expand Down

0 comments on commit 102b5b5

Please sign in to comment.