(SocketAddress addr)
| 15 | } |
| 16 | |
| 17 | void |
| 18 | bind(SocketAddress addr) throws IOException { |
| 19 | SocketChannel channel = (SocketChannel) key.channel(); |
| 20 | channel.socket().bind(addr); |
| 21 | } |
| 22 | |
| 23 | void |
| 24 | connect(SocketAddress addr) throws IOException { |
no outgoing calls
no test coverage detected