1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-17 18:06:15 -05:00
v2fly/proxy/blackhole/blackhole.go

44 lines
1.1 KiB
Go
Raw Normal View History

2016-12-22 07:33:28 -05:00
// Package blackhole is an outbound handler that blocks all connections.
2015-10-28 12:41:14 -04:00
package blackhole
import (
"context"
2017-01-10 09:10:12 -05:00
"time"
"v2ray.com/core/common"
2017-01-13 18:27:45 -05:00
"v2ray.com/core/common/net"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/transport/ray"
2015-10-28 12:41:14 -04:00
)
2016-12-21 15:43:00 -05:00
// Handler is an outbound connection that sliently swallow the entire payload.
type Handler struct {
2016-09-22 06:01:36 -04:00
response ResponseConfig
2015-10-28 12:41:14 -04:00
}
2016-12-21 15:43:00 -05:00
// New creates a new blackhole handler.
func New(ctx context.Context, config *Config) (*Handler, 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-12-21 15:43:00 -05:00
return &Handler{
2016-09-22 06:01:36 -04:00
response: response,
}, nil
2015-10-28 12:41:14 -04:00
}
2016-12-21 15:43:00 -05:00
// Dispatch implements OutboundHandler.Dispatch().
2017-01-13 18:27:45 -05:00
func (v *Handler) Dispatch(destination net.Destination, ray ray.OutboundRay) {
2016-11-27 15:39:09 -05:00
v.response.WriteTo(ray.OutboundOutput())
2017-01-10 09:10:12 -05:00
// CloseError() will immediately close the connection.
// Sleep a little here to make sure the response is sent to client.
time.Sleep(time.Millisecond * 500)
2017-01-10 08:22:42 -05:00
ray.OutboundInput().CloseError()
2017-01-10 18:09:33 -05:00
ray.OutboundOutput().CloseError()
2015-10-28 12:41:14 -04:00
}
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return New(ctx, config.(*Config))
}))
2016-06-14 16:54:08 -04:00
}