2015-10-28 12:41:14 -04:00
|
|
|
package blackhole
|
|
|
|
|
|
|
|
import (
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/app"
|
2016-12-09 05:35:27 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2016-08-20 14:55:45 -04:00
|
|
|
v2net "v2ray.com/core/common/net"
|
|
|
|
"v2ray.com/core/proxy"
|
|
|
|
"v2ray.com/core/transport/ray"
|
2015-10-28 12:41:14 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
2016-09-22 06:01:36 -04:00
|
|
|
response ResponseConfig
|
2015-10-28 12:41:14 -04:00
|
|
|
}
|
|
|
|
|
2016-09-22 06:01:36 -04:00
|
|
|
func NewBlackHole(space app.Space, config *Config, meta *proxy.OutboundHandlerMeta) (*BlackHole, error) {
|
2016-10-16 08:22:21 -04:00
|
|
|
response, err := config.GetInternalResponse()
|
2016-09-22 06:01:36 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-06-04 08:25:13 -04:00
|
|
|
return &BlackHole{
|
2016-06-10 16:26:39 -04:00
|
|
|
meta: meta,
|
2016-09-22 06:01:36 -04:00
|
|
|
response: response,
|
|
|
|
}, nil
|
2015-10-28 12:41:14 -04:00
|
|
|
}
|
|
|
|
|
2016-12-09 05:35:27 -05:00
|
|
|
func (v *BlackHole) Dispatch(destination v2net.Destination, payload *buf.Buffer, ray ray.OutboundRay) {
|
2016-04-25 18:13:26 -04:00
|
|
|
payload.Release()
|
2016-04-18 12:44:10 -04:00
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
v.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
|
|
|
}
|
|
|
|
|
2016-06-14 16:54:08 -04:00
|
|
|
type Factory struct{}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *Factory) StreamCapability() v2net.NetworkList {
|
2016-10-02 17:43:58 -04:00
|
|
|
return v2net.NetworkList{
|
|
|
|
Network: []v2net.Network{v2net.Network_RawTCP},
|
|
|
|
}
|
2016-06-14 16:54:08 -04:00
|
|
|
}
|
|
|
|
|
2016-11-27 15:39:09 -05:00
|
|
|
func (v *Factory) Create(space app.Space, config interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
|
2016-09-22 06:01:36 -04:00
|
|
|
return NewBlackHole(space, config.(*Config), meta)
|
2016-06-14 16:54:08 -04:00
|
|
|
}
|