I am using rustls library (https://github.com/ctz/rustls) for the TLS connections. Everything is good except that some servers don't establish the connection (fails after HelloClient message) due to they do not support empty fragments for CBC mode (the option name from the OpenSSL is SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS, more details here https://www.openssl.org/~bodo/tls-cbc.txt). I know that rustls uses ring library as well (https://github.com/briansmith/ring), but I couln't find the similar option there also.
I tried to research the rustls and ring code, but no similar option were found.
I expect to establish the tls connection without empty fragments with the server that doesn't support it. E.g. Window 7 uses tls 1.0 (or 1.1) by default.
Thank you for help.