diff --git a/request.go b/request.go index db3c88a..eaee287 100644 --- a/request.go +++ b/request.go @@ -119,11 +119,3 @@ func (r *Request) ServerName() string { } return "" } - -// RemoteAddr returns the remote network address of the client. -func (r *Request) RemoteAddr() net.Addr { - if r.conn != nil { - return r.conn.RemoteAddr() - } - return nil -}