We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479e011 commit dedbc86Copy full SHA for dedbc86
src/server.ts
@@ -63,13 +63,13 @@ const HTTPS_DEFAULTS = {
63
* Connection statistics for bandwidth tracking.
64
*/
65
export type ConnectionStats = {
66
- // Bytes sent from proxy to client.
+ // Bytes sent by proxy to client.
67
srcTxBytes: number;
68
- // Bytes received from client to proxy.
+ // Bytes received by proxy from client.
69
srcRxBytes: number;
70
- // Bytes sent from proxy to target.
+ // Bytes sent by proxy to target.
71
trgTxBytes: number | null;
72
- // Bytes received from target to proxy.
+ // Bytes received by proxy from target.
73
trgRxBytes: number | null;
74
};
75
0 commit comments