Add the option to define custom cipher suites for backend serversTransport

This commit is contained in:
NEwa
2026-01-08 18:22:04 +01:00
committed by GitHub
parent f7280439e6
commit 12d792cdef
21 changed files with 698 additions and 1 deletions
@@ -1470,6 +1470,11 @@ func (in *ServersTransportSpec) DeepCopyInto(out *ServersTransportSpec) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.CipherSuites != nil {
in, out := &in.CipherSuites, &out.CipherSuites
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.ForwardingTimeouts != nil {
in, out := &in.ForwardingTimeouts, &out.ForwardingTimeouts
*out = new(ForwardingTimeouts)