mirror of
https://github.com/nadoo/glider.git
synced 2025-02-23 09:25:41 +08:00
23 lines
448 B
Go
23 lines
448 B
Go
// +build !linux
|
|
|
|
package ipset
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/nadoo/glider/rule"
|
|
)
|
|
|
|
// Manager struct
|
|
type Manager struct{}
|
|
|
|
// NewManager returns a Manager
|
|
func NewManager(rules []*rule.Config) (*Manager, error) {
|
|
return nil, errors.New("ipset not supported on this os")
|
|
}
|
|
|
|
// AddDomainIP implements the DNSAnswerHandler function
|
|
func (m *Manager) AddDomainIP(domain, ip string) error {
|
|
return errors.New("ipset not supported on this os")
|
|
}
|