2015-10-28 17:41:14 +01:00
|
|
|
package blackhole
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
|
2015-12-06 11:00:10 +01:00
|
|
|
"github.com/v2ray/v2ray-core/app"
|
2016-01-29 13:39:55 +00:00
|
|
|
v2io "github.com/v2ray/v2ray-core/common/io"
|
2015-10-28 17:41:14 +01:00
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
2016-01-02 23:32:18 +01:00
|
|
|
"github.com/v2ray/v2ray-core/proxy"
|
2016-01-02 23:08:36 +01:00
|
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
2015-10-28 17:41:14 +01: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{}
|
|
|
|
}
|
|
|
|
|
2015-11-27 12:29:20 +01:00
|
|
|
func (this *BlackHole) Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error {
|
2015-10-28 17:41:14 +01:00
|
|
|
if chunk := firstPacket.Chunk(); chunk != nil {
|
|
|
|
chunk.Release()
|
|
|
|
}
|
|
|
|
|
|
|
|
close(ray.OutboundOutput())
|
|
|
|
if firstPacket.MoreChunks() {
|
2016-02-01 12:22:29 +01:00
|
|
|
v2io.ChanToRawWriter(ioutil.Discard, ray.OutboundInput())
|
2015-10-28 17:41:14 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-25 17:29:26 +01:00
|
|
|
internal.MustRegisterOutboundHandlerCreator("blackhole",
|
2016-01-25 17:18:24 +01:00
|
|
|
func(space app.Space, config interface{}) (proxy.OutboundHandler, error) {
|
2016-01-06 16:23:54 +01:00
|
|
|
return NewBlackHole(), nil
|
|
|
|
})
|
2015-10-28 17:41:14 +01:00
|
|
|
}
|