1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-19 03:34:31 -04:00
v2fly/proxy/blackhole/blackhole.go

48 lines
1.2 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
2017-12-02 19:04:57 -05:00
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg blackhole -path Proxy,Blackhole
2017-04-08 19:43:25 -04:00
2015-10-28 12:41:14 -04:00
import (
"context"
2017-01-10 09:10:12 -05:00
"time"
2018-04-16 18:31:10 -04:00
"v2ray.com/core"
"v2ray.com/core/common"
"v2ray.com/core/proxy"
2018-04-16 18:31:10 -04:00
"v2ray.com/core/transport/pipe"
2015-10-28 12:41:14 -04:00
)
2017-02-10 10:50:45 -05:00
// Handler is an outbound connection that silently swallow the entire payload.
2016-12-21 15:43:00 -05:00
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
}
2017-02-10 18:41:14 -05:00
// Process implements OutboundHandler.Dispatch().
2018-04-16 18:31:10 -04:00
func (h *Handler) Process(ctx context.Context, link *core.Link, dialer proxy.Dialer) error {
nBytes := h.response.WriteTo(link.Writer)
if nBytes > 0 {
// Sleep a little here to make sure the response is sent to client.
time.Sleep(time.Second)
}
2018-04-16 18:31:10 -04:00
pipe.CloseError(link.Writer)
2017-02-10 05:41:50 -05:00
return nil
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
}