2015-12-06 17:21:15 +00:00
|
|
|
package blackhole
|
|
|
|
|
2016-06-10 20:26:39 +00:00
|
|
|
import (
|
|
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
|
|
|
v2io "github.com/v2ray/v2ray-core/common/io"
|
|
|
|
)
|
|
|
|
|
2016-01-15 11:43:06 +00:00
|
|
|
type Config struct {
|
2016-06-10 20:26:39 +00:00
|
|
|
Response Response
|
|
|
|
}
|
|
|
|
|
|
|
|
type Response interface {
|
|
|
|
WriteTo(v2io.Writer)
|
|
|
|
}
|
|
|
|
|
|
|
|
type NoneResponse struct{}
|
|
|
|
|
|
|
|
func (this *NoneResponse) WriteTo(writer v2io.Writer) {}
|
|
|
|
|
|
|
|
type HTTPResponse struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
`
|
|
|
|
)
|
|
|
|
|
|
|
|
func (this *HTTPResponse) WriteTo(writer v2io.Writer) {
|
2016-07-23 09:55:57 +00:00
|
|
|
writer.Write(alloc.NewLocalBuffer(512).Clear().AppendString(http403response))
|
2015-12-06 17:21:15 +00:00
|
|
|
}
|