Feat: HEALTH_ADDRESS_TO_PING variable

- Defaults to `1.1.1.1`
- Add more Ping integration tests with different addresses
- Add unit test pinging 127.0.0.1
- Add comment explaining why we need to use ICMP instead of UDP
This commit is contained in:
Quentin McGaw (desktop)
2021-09-11 22:22:55 +00:00
parent cade2732b0
commit 6627cda96c
8 changed files with 109 additions and 10 deletions

View File

@@ -27,7 +27,7 @@ func NewServer(config configuration.Health,
return &Server{
logger: logger,
handler: newHandler(logger),
pinger: newPinger(),
pinger: newPinger(config.AddressToPing),
config: config,
vpn: vpnHealth{
looper: vpnLooper,