2015-10-28 17:41:14 +01:00
|
|
|
package blackhole
|
|
|
|
|
|
|
|
import (
|
2016-08-20 20:55:45 +02:00
|
|
|
"v2ray.com/core/app"
|
|
|
|
"v2ray.com/core/common/alloc"
|
|
|
|
v2net "v2ray.com/core/common/net"
|
|
|
|
"v2ray.com/core/proxy"
|
|
|
|
"v2ray.com/core/transport/ray"
|
2015-10-28 17:41:14 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// BlackHole is an outbound connection that sliently swallow the entire payload.
|
|
|
|
type BlackHole struct {
|
2016-06-10 22:26:39 +02:00
|
|
|
meta *proxy.OutboundHandlerMeta
|
2016-09-22 12:01:36 +02:00
|
|
|
response ResponseConfig
|
2015-10-28 17:41:14 +01:00
|
|
|
}
|
|
|
|
|
2016-09-22 12:01:36 +02:00
|
|
|
func NewBlackHole(space app.Space, config *Config, meta *proxy.OutboundHandlerMeta) (*BlackHole, error) {
|
2016-10-16 14:22:21 +02:00
|
|
|
response, err := config.GetInternalResponse()
|
2016-09-22 12:01:36 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-06-04 14:25:13 +02:00
|
|
|
return &BlackHole{
|
2016-06-10 22:26:39 +02:00
|
|
|
meta: meta,
|
2016-09-22 12:01:36 +02:00
|
|
|
response: response,
|
|
|
|
}, nil
|
2015-10-28 17:41:14 +01:00
|
|
|
}
|
|
|
|
|
2016-04-26 00:13:26 +02:00
|
|
|
func (this *BlackHole) Dispatch(destination v2net.Destination, payload *alloc.Buffer, ray ray.OutboundRay) error {
|
|
|
|
payload.Release()
|
2016-04-18 18:44:10 +02:00
|
|
|
|
2016-06-10 22:26:39 +02:00
|
|
|
this.response.WriteTo(ray.OutboundOutput())
|
2016-04-18 18:44:10 +02:00
|
|
|
ray.OutboundOutput().Close()
|
|
|
|
|
|
|
|
ray.OutboundInput().Release()
|
|
|
|
|
2015-10-28 17:41:14 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-14 22:54:08 +02:00
|
|
|
type Factory struct{}
|
|
|
|
|
2016-10-02 23:43:58 +02:00
|
|
|
func (this *Factory) StreamCapability() v2net.NetworkList {
|
|
|
|
return v2net.NetworkList{
|
|
|
|
Network: []v2net.Network{v2net.Network_RawTCP},
|
|
|
|
}
|
2016-06-14 22:54:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *Factory) Create(space app.Space, config interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
|
2016-09-22 12:01:36 +02:00
|
|
|
return NewBlackHole(space, config.(*Config), meta)
|
2016-06-14 22:54:08 +02:00
|
|
|
}
|