mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
70 lines
1.4 KiB
Go
70 lines
1.4 KiB
Go
package adapters
|
|
|
|
import (
|
|
"io"
|
|
"net"
|
|
"time"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
)
|
|
|
|
// RejectAdapter is a reject connected adapter
|
|
type RejectAdapter struct {
|
|
conn net.Conn
|
|
}
|
|
|
|
// Close is used to close connection
|
|
func (r *RejectAdapter) Close() {}
|
|
|
|
// Conn is used to http request
|
|
func (r *RejectAdapter) Conn() net.Conn {
|
|
return r.conn
|
|
}
|
|
|
|
type Reject struct {
|
|
}
|
|
|
|
func (r *Reject) Name() string {
|
|
return "Reject"
|
|
}
|
|
|
|
func (r *Reject) Type() C.AdapterType {
|
|
return C.Reject
|
|
}
|
|
|
|
func (r *Reject) Generator(addr *C.Addr) (adapter C.ProxyAdapter, err error) {
|
|
return &RejectAdapter{conn: &NopConn{}}, nil
|
|
}
|
|
|
|
func NewReject() *Reject {
|
|
return &Reject{}
|
|
}
|
|
|
|
type NopConn struct{}
|
|
|
|
func (rw *NopConn) Read(b []byte) (int, error) {
|
|
return len(b), nil
|
|
}
|
|
|
|
func (rw *NopConn) Write(b []byte) (int, error) {
|
|
return 0, io.EOF
|
|
}
|
|
|
|
// Close is fake function for net.Conn
|
|
func (rw *NopConn) Close() error { return nil }
|
|
|
|
// LocalAddr is fake function for net.Conn
|
|
func (rw *NopConn) LocalAddr() net.Addr { return nil }
|
|
|
|
// RemoteAddr is fake function for net.Conn
|
|
func (rw *NopConn) RemoteAddr() net.Addr { return nil }
|
|
|
|
// SetDeadline is fake function for net.Conn
|
|
func (rw *NopConn) SetDeadline(time.Time) error { return nil }
|
|
|
|
// SetReadDeadline is fake function for net.Conn
|
|
func (rw *NopConn) SetReadDeadline(time.Time) error { return nil }
|
|
|
|
// SetWriteDeadline is fake function for net.Conn
|
|
func (rw *NopConn) SetWriteDeadline(time.Time) error { return nil }
|