2015-12-06 12:21:15 -05:00
|
|
|
package blackhole
|
|
|
|
|
2016-06-10 16:26:39 -04:00
|
|
|
import (
|
|
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
|
|
|
v2io "github.com/v2ray/v2ray-core/common/io"
|
|
|
|
)
|
|
|
|
|
2016-01-15 06:43:06 -05:00
|
|
|
type Config struct {
|
2016-06-10 16:26:39 -04: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 17:01:17 -04:00
|
|
|
|
|
|
|
|
2016-06-10 16:26:39 -04:00
|
|
|
`
|
|
|
|
)
|
|
|
|
|
|
|
|
func (this *HTTPResponse) WriteTo(writer v2io.Writer) {
|
|
|
|
writer.Write(alloc.NewSmallBuffer().Clear().AppendString(http403response))
|
2015-12-06 12:21:15 -05:00
|
|
|
}
|