For server.accept I wrote a completion handler that has the parameters.
When the handler is invoked via the accept method, does that mean the AsynchronousSocketChannel is now conneted?
Or do I have to invoke the AsynchronousSocketChannel.connect method?
Right now what I think is going on is that AsynchronousServerSocketChannel.accept accepts a connection (and stores it in the AsynchronousSocketChannel parameter) , and that AsynchronousSocketChannel.connect also initiates a connection from server to client (stores in the socket channel).
Am I on the right track?