Files
jagacloud/pkg/network/network.go
2025-11-23 11:29:12 +07:00

16 lines
342 B
Go

package network
// BridgeManager handles host bridge/VLAN setup.
type BridgeManager interface {
EnsureBridge(name string, vlanAware bool, mtu int) error
List() ([]Bridge, error)
}
type Bridge struct {
Name string
VlanAware bool
MTU int
}
// TODO: implement using systemd-networkd/ifupdown2 files in /etc/jagacloud/network.