v2fly/proxy/blackhole/config.go

49 lines
1.1 KiB
Go
Raw Normal View History

2015-12-06 17:21:15 +00:00
package blackhole
2016-06-10 20:26:39 +00:00
import (
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/buf"
2021-06-19 13:36:54 +00:00
"github.com/v2fly/v2ray-core/v4/common/serial"
2016-09-22 10:01:36 +00:00
)
2016-06-10 20:26:39 +00:00
const (
http403response = `HTTP/1.1 403 Forbidden
Connection: close
Cache-Control: max-age=3600, public
Content-Length: 0
2016-06-10 21:01:17 +00:00
2016-06-10 20:26:39 +00:00
`
)
2016-12-22 12:33:28 +00:00
// ResponseConfig is the configuration for blackhole responses.
2016-09-22 10:01:36 +00:00
type ResponseConfig interface {
2016-12-22 12:33:28 +00:00
// WriteTo writes predefined response to the give buffer.
WriteTo(buf.Writer) int32
2016-09-22 10:01:36 +00:00
}
2016-12-22 12:33:28 +00:00
// WriteTo implements ResponseConfig.WriteTo().
func (*NoneResponse) WriteTo(buf.Writer) int32 { return 0 }
2016-09-22 10:01:36 +00:00
2016-12-22 12:33:28 +00:00
// WriteTo implements ResponseConfig.WriteTo().
func (*HTTPResponse) WriteTo(writer buf.Writer) int32 {
2018-03-09 10:26:00 +00:00
b := buf.New()
2018-11-14 21:55:20 +00:00
common.Must2(b.WriteString(http403response))
n := b.Len()
2018-11-16 10:08:12 +00:00
writer.WriteMultiBuffer(buf.MultiBuffer{b})
return n
2015-12-06 17:21:15 +00:00
}
2016-09-22 10:01:36 +00:00
2016-12-22 12:33:28 +00:00
// GetInternalResponse converts response settings from proto to internal data structure.
2017-07-25 20:14:52 +00:00
func (c *Config) GetInternalResponse() (ResponseConfig, error) {
if c.GetResponse() == nil {
2016-09-22 10:01:36 +00:00
return new(NoneResponse), nil
}
2021-06-19 13:36:54 +00:00
config, err := serial.GetInstanceOf(c.GetResponse())
2016-09-22 10:01:36 +00:00
if err != nil {
return nil, err
}
2016-10-16 12:22:21 +00:00
return config.(ResponseConfig), nil
2016-09-22 10:01:36 +00:00
}