2015-10-28 12:41:14 -04:00
|
|
|
package blackhole
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
|
2015-12-06 05:00:10 -05:00
|
|
|
"github.com/v2ray/v2ray-core/app"
|
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"
|
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 {
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewBlackHole() *BlackHole {
|
|
|
|
return &BlackHole{}
|
|
|
|
}
|
|
|
|
|
2015-11-27 06:29:20 -05:00
|
|
|
func (this *BlackHole) Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error {
|
2015-10-28 12:41:14 -04:00
|
|
|
if chunk := firstPacket.Chunk(); chunk != nil {
|
|
|
|
chunk.Release()
|
|
|
|
}
|
|
|
|
|
|
|
|
close(ray.OutboundOutput())
|
|
|
|
if firstPacket.MoreChunks() {
|
|
|
|
v2net.ChanToWriter(ioutil.Discard, ray.OutboundInput())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-06 10:23:54 -05:00
|
|
|
internal.MustRegisterOutboundConnectionHandlerCreator("blackhole",
|
|
|
|
func(space app.Space, config interface{}) (proxy.OutboundConnectionHandler, error) {
|
|
|
|
return NewBlackHole(), nil
|
|
|
|
})
|
2015-10-28 12:41:14 -04:00
|
|
|
}
|