2018-06-10 22:50:03 +08:00
|
|
|
package adapters
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2018-06-14 01:00:58 +08:00
|
|
|
"net"
|
2018-06-10 22:50:03 +08:00
|
|
|
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RejectAdapter is a reject connected adapter
|
|
|
|
type RejectAdapter struct {
|
|
|
|
}
|
|
|
|
|
2018-06-14 01:00:58 +08:00
|
|
|
// Close is used to close connection
|
|
|
|
func (r *RejectAdapter) Close() {}
|
2018-06-10 22:50:03 +08:00
|
|
|
|
2018-06-17 22:41:32 +08:00
|
|
|
// Conn is used to http request
|
2018-06-14 01:00:58 +08:00
|
|
|
func (r *RejectAdapter) Conn() net.Conn {
|
|
|
|
return nil
|
2018-06-10 22:50:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type Reject struct {
|
|
|
|
}
|
|
|
|
|
2018-06-16 21:34:13 +08:00
|
|
|
func (r *Reject) Name() string {
|
|
|
|
return "Reject"
|
|
|
|
}
|
|
|
|
|
2018-07-12 23:28:38 +08:00
|
|
|
func (r *Reject) Type() C.AdapterType {
|
|
|
|
return C.Reject
|
|
|
|
}
|
|
|
|
|
2018-06-10 22:50:03 +08:00
|
|
|
func (r *Reject) Generator(addr *C.Addr) (adapter C.ProxyAdapter, err error) {
|
|
|
|
return &RejectAdapter{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewReject() *Reject {
|
|
|
|
return &Reject{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type NopRW struct{}
|
|
|
|
|
|
|
|
func (rw *NopRW) Read(b []byte) (int, error) {
|
|
|
|
return len(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rw *NopRW) Write(b []byte) (int, error) {
|
|
|
|
return 0, io.EOF
|
|
|
|
}
|