mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-19 10:56:06 -05:00
56 lines
1.0 KiB
Go
56 lines
1.0 KiB
Go
package blackhole
|
|
|
|
import (
|
|
"v2ray.com/core/common/alloc"
|
|
v2io "v2ray.com/core/common/io"
|
|
|
|
"github.com/golang/protobuf/ptypes"
|
|
"github.com/golang/protobuf/ptypes/any"
|
|
"v2ray.com/core/common/serial"
|
|
)
|
|
|
|
const (
|
|
http403response = `HTTP/1.1 403 Forbidden
|
|
Connection: close
|
|
Cache-Control: max-age=3600, public
|
|
Content-Length: 0
|
|
|
|
|
|
`
|
|
)
|
|
|
|
type ResponseConfig interface {
|
|
AsAny() *any.Any
|
|
WriteTo(v2io.Writer)
|
|
}
|
|
|
|
func (v *NoneResponse) WriteTo(v2io.Writer) {}
|
|
|
|
func (v *NoneResponse) AsAny() *any.Any {
|
|
r, _ := ptypes.MarshalAny(v)
|
|
return r
|
|
}
|
|
|
|
func (v *HTTPResponse) WriteTo(writer v2io.Writer) {
|
|
b := alloc.NewLocalBuffer(512)
|
|
b.AppendFunc(serial.WriteString(http403response))
|
|
writer.Write(b)
|
|
}
|
|
|
|
func (v *HTTPResponse) AsAny() *any.Any {
|
|
r, _ := ptypes.MarshalAny(v)
|
|
return r
|
|
}
|
|
|
|
func (v *Config) GetInternalResponse() (ResponseConfig, error) {
|
|
if v.GetResponse() == nil {
|
|
return new(NoneResponse), nil
|
|
}
|
|
|
|
config, err := v.GetResponse().GetInstance()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return config.(ResponseConfig), nil
|
|
}
|