8 November 2011: Wouter
- can configure ssl service to one port number, and not on others.
+ - fixup windows compile with ssl support.
1 November 2011: Wouter
- dns over ssl support as a client, ssl-upstream yes turns it on.
SSL* ssl = (SSL*)thessl;
/* set them both just in case, but usually they are the same BIO */
BIO_set_callback(SSL_get_rbio(ssl), &win_bio_cb);
- BIO_set_callback_arg(SSL_get_rbio(ssl), (char*)comm_point_internal(c));
+ BIO_set_callback_arg(SSL_get_rbio(ssl), (char*)&c->ev->ev);
BIO_set_callback(SSL_get_wbio(ssl), &win_bio_cb);
- BIO_set_callback_arg(SSL_get_wbio(ssl), (char*)comm_point_internal(c));
+ BIO_set_callback_arg(SSL_get_wbio(ssl), (char*)&c->ev->ev);
}
#endif