2024-05-17 18:30:33 +08:00
|
|
|
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved.
|
2022-01-09 17:07:37 +08:00
|
|
|
|
|
|
|
|
package firewalls
|
|
|
|
|
|
|
|
|
|
// MockFirewall 模拟防火墙
|
|
|
|
|
type MockFirewall struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewMockFirewall() *MockFirewall {
|
|
|
|
|
return &MockFirewall{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Name 名称
|
|
|
|
|
func (this *MockFirewall) Name() string {
|
|
|
|
|
return "mock"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// IsReady 是否已准备被调用
|
|
|
|
|
func (this *MockFirewall) IsReady() bool {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-21 18:14:53 +08:00
|
|
|
// IsMock 是否为模拟
|
|
|
|
|
func (this *MockFirewall) IsMock() bool {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-09 17:07:37 +08:00
|
|
|
// AllowPort 允许端口
|
|
|
|
|
func (this *MockFirewall) AllowPort(port int, protocol string) error {
|
|
|
|
|
_ = port
|
|
|
|
|
_ = protocol
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemovePort 删除端口
|
|
|
|
|
func (this *MockFirewall) RemovePort(port int, protocol string) error {
|
|
|
|
|
_ = port
|
|
|
|
|
_ = protocol
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RejectSourceIP 拒绝某个源IP连接
|
|
|
|
|
func (this *MockFirewall) RejectSourceIP(ip string, timeoutSeconds int) error {
|
|
|
|
|
_ = ip
|
|
|
|
|
_ = timeoutSeconds
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DropSourceIP 丢弃某个源IP数据
|
2022-08-04 11:01:16 +08:00
|
|
|
func (this *MockFirewall) DropSourceIP(ip string, timeoutSeconds int, async bool) error {
|
2022-01-09 17:07:37 +08:00
|
|
|
_ = ip
|
|
|
|
|
_ = timeoutSeconds
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemoveSourceIP 删除某个源IP
|
|
|
|
|
func (this *MockFirewall) RemoveSourceIP(ip string) error {
|
|
|
|
|
_ = ip
|
|
|
|
|
return nil
|
|
|
|
|
}
|