2015-10-28 12:41:14 -04:00
|
|
|
package blackhole
|
|
|
|
|
|
|
|
import (
|
2015-12-06 05:00:10 -05:00
|
|
|
"github.com/v2ray/v2ray-core/app"
|
2016-04-25 18:13:26 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
2015-10-28 12:41:14 -04:00
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
2016-01-02 17:32:18 -05:00
|
|
|
"github.com/v2ray/v2ray-core/proxy"
|
2016-01-02 17:08:36 -05:00
|
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
2016-06-14 16:54:08 -04:00
|
|
|
"github.com/v2ray/v2ray-core/transport/internet"
|
2015-10-28 12:41:14 -04:00
|
|
|
"github.com/v2ray/v2ray-core/transport/ray"
|
|
|
|
)
|
|
|
|
|
|
|
|
// BlackHole is an outbound connection that sliently swallow the entire payload.
|
|
|
|
type BlackHole struct {
|
2016-06-10 16:26:39 -04:00
|
|
|
meta *proxy.OutboundHandlerMeta
|
|
|
|
response Response
|
2015-10-28 12:41:14 -04:00
|
|
|
}
|
|
|
|
|
2016-06-04 08:25:13 -04:00
|
|
|
func NewBlackHole(space app.Space, config *Config, meta *proxy.OutboundHandlerMeta) *BlackHole {
|
|
|
|
return &BlackHole{
|
2016-06-10 16:26:39 -04:00
|
|
|
meta: meta,
|
|
|
|
response: config.Response,
|
2016-06-04 08:25:13 -04:00
|
|
|
}
|
2015-10-28 12:41:14 -04:00
|
|
|
}
|
|
|
|
|
2016-04-25 18:13:26 -04:00
|
|
|
func (this *BlackHole) Dispatch(destination v2net.Destination, payload *alloc.Buffer, ray ray.OutboundRay) error {
|
|
|
|
payload.Release()
|
2016-04-18 12:44:10 -04:00
|
|
|
|
2016-06-10 16:26:39 -04:00
|
|
|
this.response.WriteTo(ray.OutboundOutput())
|
2016-04-18 12:44:10 -04:00
|
|
|
ray.OutboundOutput().Close()
|
|
|
|
|
|
|
|
ray.OutboundInput().Release()
|
|
|
|
|
2015-10-28 12:41:14 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-14 16:54:08 -04: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 12:41:14 -04:00
|
|
|
func init() {
|
2016-06-14 16:54:08 -04:00
|
|
|
internal.MustRegisterOutboundHandlerCreator("blackhole", new(Factory))
|
2015-10-28 12:41:14 -04:00
|
|
|
}
|