You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/proxy/blackhole/blackhole.go

53 lines
1.4 KiB

9 years ago
package blackhole
import (
"v2ray.com/core/app"
"v2ray.com/core/common/buf"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/proxy"
"v2ray.com/core/transport/ray"
9 years ago
)
8 years ago
// Handler is an outbound connection that sliently swallow the entire payload.
type Handler struct {
meta *proxy.OutboundHandlerMeta
response ResponseConfig
9 years ago
}
8 years ago
// New creates a new blackhole handler.
func New(space app.Space, config *Config, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
response, err := config.GetInternalResponse()
if err != nil {
return nil, err
}
8 years ago
return &Handler{
meta: meta,
response: response,
}, nil
9 years ago
}
8 years ago
// Dispatch implements OutboundHandler.Dispatch().
func (v *Handler) Dispatch(destination v2net.Destination, payload *buf.Buffer, ray ray.OutboundRay) {
payload.Release()
8 years ago
v.response.WriteTo(ray.OutboundOutput())
ray.OutboundOutput().Close()
ray.OutboundInput().Release()
9 years ago
}
8 years ago
// Factory is an utility for creating blackhole handlers.
type Factory struct{}
8 years ago
// StreamCapability implements OutboundHandlerFactory.StreamCapability().
8 years ago
func (v *Factory) StreamCapability() v2net.NetworkList {
return v2net.NetworkList{
Network: []v2net.Network{v2net.Network_RawTCP},
}
}
8 years ago
// Create implements OutboundHandlerFactory.Create().
8 years ago
func (v *Factory) Create(space app.Space, config interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
8 years ago
return New(space, config.(*Config), meta)
}