RemoteAddr returns the remote network address.
()
| 143 | |
| 144 | // RemoteAddr returns the remote network address. |
| 145 | func (c *CryptoConn) RemoteAddr() net.Addr { |
| 146 | return c.Conn.RemoteAddr() |
| 147 | } |
| 148 | |
| 149 | // SetDeadline sets the read and write deadlines associated with the connection. |
| 150 | // A zero value for t means Read and Write will not time out. |
no outgoing calls