Close closes the underlying network connection without sending or waiting for a close message.
()
| 342 | // Close closes the underlying network connection without sending or waiting |
| 343 | // for a close message. |
| 344 | func (c *Conn) Close() error { |
| 345 | return c.conn.Close() |
| 346 | } |
| 347 | |
| 348 | // LocalAddr returns the local network address. |
| 349 | func (c *Conn) LocalAddr() net.Addr { |
no outgoing calls
no test coverage detected