closeWriter is implemented by TCP-like connections (such as [net.TCPConn] and gVisor's gonet.TCPConn) that can shut down just their writing side.
| 1788 | // [net.TCPConn] and gVisor's gonet.TCPConn) that can shut down just |
| 1789 | // their writing side. |
| 1790 | type closeWriter interface { |
| 1791 | CloseWrite() error |
| 1792 | } |
| 1793 | |
| 1794 | // ProxyConns copies data between a and b in both directions until |
| 1795 | // both sides have finished, then closes both connections. |
no outgoing calls
no test coverage detected