mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-07 05:51:20 +07:00
23 lines
561 B
Go
23 lines
561 B
Go
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) since 2023, mzz2017 <mzz@tuta.io>
|
|
*/
|
|
|
|
package control
|
|
|
|
import "github.com/cilium/ebpf"
|
|
|
|
func (c *ControlPlaneCore) OutboundAliveChangeCallback(outbound uint8) func(alive bool, l4proto uint8, ipversion uint8) {
|
|
return func(alive bool, l4proto uint8, ipversion uint8) {
|
|
value := uint32(0)
|
|
if alive {
|
|
value = 1
|
|
}
|
|
_ = c.bpf.OutboundConnectivityMap.Update(bpfOutboundConnectivityQuery{
|
|
Outbound: outbound,
|
|
L4proto: l4proto,
|
|
Ipversion: ipversion,
|
|
}, value, ebpf.UpdateAny)
|
|
}
|
|
}
|