Fix: chrome crash when using SwitchyOmega by reject rule (#47)

* Fix: chrome crash when using SwitchyOmega by reject rule
This commit is contained in:
beyondkmp 2018-11-25 17:00:11 +08:00 committed by Dreamacro
parent 970643b144
commit f6743d4d21

View file

@ -50,7 +50,7 @@ func NewReject() *Reject {
type NopConn struct{}
func (rw *NopConn) Read(b []byte) (int, error) {
return len(b), nil
return 0, io.EOF
}
func (rw *NopConn) Write(b []byte) (int, error) {