Is there an option we can use through "ALPN Protocol" to Allow Legacy Renegotiation, or some other method. i.e. setting SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION to true?
Ideally we could just allow it on this Subflow connector for known legacy API but leave the others alone.
import * as https from 'https';
import * as crypto from "crypto";
axios.create({
baseURL: baseURL,
httpsAgent: new https.Agent({
secureOptions: crypto.constants.SSL_OP_LEGACY_SERVER_CONNECT,
})
});