mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-11-02 14:04:01 +08:00
19 lines
322 B
Go
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() {}
|