diff options
| author | JJ <[email protected]> | 2022-06-13 11:34:31 -0400 |
|---|---|---|
| committer | JJ <[email protected]> | 2022-06-13 11:34:31 -0400 |
| commit | a32ace3c60721d1bae4ea77117ffd14a35b0f951 (patch) | |
| tree | 223491fac01200e49302b477e512b5f7ebccf2ae /extendedstats/other.go | |
| parent | c8f9b3337ee493ea1ac56d70a1a53ab9442121b9 (diff) | |
| parent | c93a4dedc897f84992a6a34200fe954ba2ca435d (diff) | |
Merge branch 'main' into timeout-patch
Diffstat (limited to 'extendedstats/other.go')
| -rw-r--r-- | extendedstats/other.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extendedstats/other.go b/extendedstats/other.go index 825ea95..369c8f6 100644 --- a/extendedstats/other.go +++ b/extendedstats/other.go @@ -9,7 +9,9 @@ import ( type ExtendedStats struct{} -func (es *ExtendedStats) IncorporateConnectionStats(conn net.Conn) {} +func (es *ExtendedStats) IncorporateConnectionStats(conn net.Conn) error { + return fmt.Errorf("OOPS: IncorporateConnectionStats is not supported on this platform.") +} func (es *ExtendedStats) Repr() string { return "" |
