Jose
Jose
The new `sslNewSessionCallback` is called before the handshake start, SNI hostname is not available in the server until ClientHello is received. One option which can already work is to use...
For the SecureTransport protocol, the kSSLSessionOptionBreakOnClientHello option allows us to stop the handshake once the Client Hello message is received. At this point, we can use SSLCopyRequestedPeerName to retrieve the...
The underlying cause is likely this .NET bug https://github.com/dotnet/runtime/issues/102663, see also #2677 The unhandled exception issue was fixed in #2704
this is a qualified export, IceBox depends on code from `com.zeroc.IceUtilInternal`. This exports allow to only expose this package to the given module. > exports and exports…to. An exports module...
My guess is that it is related to the Gradle setup, but I haven't looked too deeply into it.
I reverted the test to the previous code: ``` diff --git a/ruby/test/Ice/objects/AllTests.rb b/ruby/test/Ice/objects/AllTests.rb index 5d712bc8b5..1bd404c5ce 100644 --- a/ruby/test/Ice/objects/AllTests.rb +++ b/ruby/test/Ice/objects/AllTests.rb @@ -40,15 +40,13 @@ end def allTests(helper, communicator) factory =...
As mentioned by @externl using `std::array` doesn't work here, we can keep the current code.
> like the ConsoleUtil code ConsoleUtil is used by Instance, Logger, and Timer implementations, for non Windows platforms it just defines consoleErr, and consoleOut as references to cout, and cerr...
stringify itself is fine, it uses createString. See https://github.com/zeroc-ice/ice/blob/3a0a05af7a795e172e839cb808f687fcdab459aa/python/modules/IcePy/Types.cpp#L4607-L4628 The problem is the repr implementation for `Ice.Unset` that returns a bytes object https://github.com/zeroc-ice/ice/blob/3a0a05af7a795e172e839cb808f687fcdab459aa/python/modules/IcePy/Types.cpp#L155-L160
The validation of the peer certificate name, doesn't include the alternate names so it would be a bit limiting to use this for verifying the peer certificate name. It is...