- New option: `HEALTH_ICMP_TARGET_IP` defaults to `0.0.0.0` meaning use the VPN server public IP address. - Options removed: `HEALTH_VPN_INITIAL_DURATION` and `HEALTH_VPN_ADDITIONAL_DURATION` - times and retries are handpicked and hardcoded. - Less aggressive checks and less false positive detection
7 lines
111 B
Go
7 lines
111 B
Go
package icmp
|
|
|
|
type Logger interface {
|
|
Debugf(format string, args ...any)
|
|
Warnf(format string, args ...any)
|
|
}
|