Files
cunicu/pkg/daemon/feature/rtsync/sync_others.go
Steffen Vogel 92a7ad2f7f daemon: use per-interface features
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-10-07 18:30:50 +02:00

19 lines
322 B
Go

//go:build !linux
package rtsync
import (
"github.com/stv0g/cunicu/pkg/core"
"github.com/stv0g/cunicu/pkg/errors"
)
func (s *Interface) removeKernel(p *core.Peer) error {
return errors.ErrNotSupported
}
func (s *Interface) syncKernel() error {
return errors.ErrNotSupported
}
func (s *Interface) watchKernel() {}