Rename keepAlive function, as it now does more things

This commit is contained in:
Kristoffer Dalby 2021-08-19 18:06:57 +01:00
parent 8d1adaaef3
commit 48ef6e5a6f
No known key found for this signature in database
GPG key ID: 09F62DC067465735

View file

@ -218,7 +218,7 @@ func (h *Headscale) PollNetMapStream(
updateChan chan struct{},
cancelKeepAlive chan struct{},
) {
go h.keepAlive(cancelKeepAlive, keepAliveChan, mKey, req, m)
go h.scheduledPollWorker(cancelKeepAlive, keepAliveChan, mKey, req, m)
c.Stream(func(w io.Writer) bool {
log.Trace().
@ -376,8 +376,7 @@ func (h *Headscale) PollNetMapStream(
})
}
// TODO: Rename this function to schedule ...
func (h *Headscale) keepAlive(
func (h *Headscale) scheduledPollWorker(
cancelChan <-chan struct{},
keepAliveChan chan<- []byte,
mKey wgkey.Key,