| 1413 | } |
| 1414 | |
| 1415 | static void ssl_handshake(pn_transport_t* transport) { |
| 1416 | if (transport->ssl->mode == PN_SSL_MODE_CLIENT) |
| 1417 | client_handshake(transport); |
| 1418 | else { |
| 1419 | server_handshake(transport); |
| 1420 | } |
| 1421 | } |
| 1422 | |
| 1423 | static bool grow_inbuf2(pn_transport_t *transport, size_t minimum_size) { |
| 1424 | pni_ssl_t *ssl = transport->ssl; |
no test coverage detected