This is not part of the IConnection interface, because it is wrapped by IListener::accept()
| 899 | |
| 900 | // This is not part of the IConnection interface, because it is wrapped by IListener::accept() |
| 901 | void accept(NetworkAddress peerAddr) { |
| 902 | this->peer_address = peerAddr; |
| 903 | init(); |
| 904 | } |
| 905 | |
| 906 | ACTOR static void doAcceptHandshake(Reference<SSLConnection> self, Promise<Void> connected) { |
| 907 | state Hold<int> holder; |