| 5 | ) |
| 6 | |
| 7 | type ServerMetrics interface { |
| 8 | NewClient() |
| 9 | CloseClient() |
| 10 | NewProxy(name string, proxyType string, user string, clientID string) |
| 11 | CloseProxy(name string, proxyType string) |
| 12 | OpenConnection(name string, proxyType string) |
| 13 | CloseConnection(name string, proxyType string) |
| 14 | AddTrafficIn(name string, proxyType string, trafficBytes int64) |
| 15 | AddTrafficOut(name string, proxyType string, trafficBytes int64) |
| 16 | } |
| 17 | |
| 18 | var Server ServerMetrics = noopServerMetrics{} |
| 19 |
no outgoing calls
no test coverage detected
searching dependent graphs…