1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00
v2fly/proxy/blackhole/blackhole.go

50 lines
1.2 KiB
Go
Raw Normal View History

2015-10-28 16:41:14 +00:00
package blackhole
import (
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app"
"v2ray.com/core/common/alloc"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/proxy"
"v2ray.com/core/proxy/registry"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/ray"
2015-10-28 16:41:14 +00:00
)
// BlackHole is an outbound connection that sliently swallow the entire payload.
type BlackHole struct {
2016-06-10 20:26:39 +00:00
meta *proxy.OutboundHandlerMeta
response Response
2015-10-28 16:41:14 +00:00
}
2016-06-04 12:25:13 +00:00
func NewBlackHole(space app.Space, config *Config, meta *proxy.OutboundHandlerMeta) *BlackHole {
return &BlackHole{
2016-06-10 20:26:39 +00:00
meta: meta,
response: config.Response,
2016-06-04 12:25:13 +00:00
}
2015-10-28 16:41:14 +00:00
}
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
2016-06-10 20:26:39 +00:00
this.response.WriteTo(ray.OutboundOutput())
2016-04-18 16:44:10 +00:00
ray.OutboundOutput().Close()
ray.OutboundInput().Release()
2015-10-28 16:41:14 +00:00
return nil
}
2016-06-14 20:54:08 +00:00
type Factory struct{}
func (this *Factory) StreamCapability() internet.StreamConnectionType {
return internet.StreamConnectionTypeRawTCP
}
func (this *Factory) Create(space app.Space, config interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
return NewBlackHole(space, config.(*Config), meta), nil
}
2015-10-28 16:41:14 +00:00
func init() {
registry.MustRegisterOutboundHandlerCreator("blackhole", new(Factory))
2015-10-28 16:41:14 +00:00
}