summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-06-04 05:49:07 -0400
committerWill Hawkins <[email protected]>2022-06-04 05:49:07 -0400
commitde7a7bf994a020049eca89098aab9d13ff81f361 (patch)
tree25137addcf1ee9cc0c68c05d33481bcd050046ac /go.mod
parentd38bea818a90a0ca2bfc17e96c00b9896e2c61ca (diff)
[Feature] Access TCP_INFO about underlying TCP connections
This will only work on *nix systems. Code that displays information in this PR is only exemplary -- I am sure that there are better places in the code to display it!
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod5
1 files changed, 4 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index d60ef0a..39b9252 100644
--- a/go.mod
+++ b/go.mod
@@ -4,4 +4,7 @@ go 1.18
require golang.org/x/net v0.0.0-20220225172249-27dd8689420f
-require golang.org/x/text v0.3.7 // indirect
+require (
+ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
+ golang.org/x/text v0.3.7 // indirect
+)