RemoteAddr returns the remote network address.
()
| 138 | |
| 139 | // RemoteAddr returns the remote network address. |
| 140 | func (c *Conn) RemoteAddr() net.Addr { |
| 141 | return c.conn.RemoteAddr() |
| 142 | } |
| 143 | |
| 144 | // SetDeadline sets the read and write deadlines associated with the connection. |
| 145 | // A zero value for t means [Conn.Read] and [Conn.Write] will not time out. |
no outgoing calls
no test coverage detected