v2ray-core/proxy/blackhole/blackhole.go

38 lines
911 B
Go
Raw Normal View History

2015-10-28 16:41:14 +00:00
package blackhole
import (
2015-12-06 10:00:10 +00:00
"github.com/v2ray/v2ray-core/app"
2016-04-25 22:13:26 +00:00
"github.com/v2ray/v2ray-core/common/alloc"
2015-10-28 16:41:14 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
2016-01-02 22:32:18 +00:00
"github.com/v2ray/v2ray-core/proxy"
2016-01-02 22:08:36 +00:00
"github.com/v2ray/v2ray-core/proxy/internal"
2015-10-28 16:41:14 +00:00
"github.com/v2ray/v2ray-core/transport/ray"
)
// BlackHole is an outbound connection that sliently swallow the entire payload.
type BlackHole struct {
}
func NewBlackHole() *BlackHole {
return &BlackHole{}
}
2016-04-25 22:13:26 +00:00
func (this *BlackHole) Dispatch(destination v2net.Destination, payload *alloc.Buffer, ray ray.OutboundRay) error {
payload.Release()
2016-04-18 16:44:10 +00:00
ray.OutboundOutput().Close()
ray.OutboundOutput().Release()
ray.OutboundInput().Close()
ray.OutboundInput().Release()
2015-10-28 16:41:14 +00:00
return nil
}
func init() {
2016-01-25 16:29:26 +00:00
internal.MustRegisterOutboundHandlerCreator("blackhole",
func(space app.Space, config interface{}) (proxy.OutboundHandler, error) {
return NewBlackHole(), nil
})
2015-10-28 16:41:14 +00:00
}