mirror of
https://github.com/slackhq/nebula.git
synced 2024-11-10 17:24:37 +08:00
9b03053191
* Update LightHouseHandlerFunc to remove EncWriter param. * Move EncWriter to interface * EncReader, too
9 lines
242 B
Go
9 lines
242 B
Go
package udp
|
|
|
|
import (
|
|
"github.com/slackhq/nebula/iputil"
|
|
)
|
|
|
|
//TODO: The items in this file belong in their own packages but doing that in a single PR is a nightmare
|
|
|
|
type LightHouseHandlerFunc func(rAddr *Addr, vpnIp iputil.VpnIp, p []byte)
|