| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | package blackholeimport (	"v2ray.com/core/common/alloc"	v2io "v2ray.com/core/common/io"	"github.com/golang/protobuf/ptypes"	"github.com/golang/protobuf/ptypes/any")const (	http403response = `HTTP/1.1 403 ForbiddenConnection: closeCache-Control: max-age=3600, publicContent-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) {	writer.Write(alloc.NewLocalBuffer(512).Clear().AppendString(http403response))}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}
 |