Skip to content

Commit

Permalink
Merge branch 'renegoLinuxPoC' of github.com:aik-jahoda/runtime into r…
Browse files Browse the repository at this point in the history
…enegoLinuxPoC
  • Loading branch information
Jan Jahoda committed Jul 1, 2021
2 parents 100bb82 + d86628b commit ca00e71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ int OpenLibrary()
strcat(soName, versionOverride);
#endif

printf("%s:%d %s \n", __FILE__, __LINE__, soName);
DlOpen(soName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ const EVP_CIPHER* EVP_chacha20_poly1305(void);
REQUIRED_FUNCTION(SSL_set_accept_state) \
REQUIRED_FUNCTION(SSL_set_bio) \
REQUIRED_FUNCTION(SSL_set_connect_state) \
REQUIRED_FUNCTION(SSL_set_options) \
FALLBACK_FUNCTION(SSL_set_options) \
REQUIRED_FUNCTION(SSL_set_verify) \
REQUIRED_FUNCTION(SSL_shutdown) \
LEGACY_FUNCTION(SSL_state) \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ private static IReadOnlyList<TlsCipherSuite> GetSupportedNonTls13CipherSuites()
return null;

var ret = new List<TlsCipherSuite>();
//AllowOneOnOneSide(GetNonTls13CipherSuites(), (cs) => false, (cs) => ret.Add(cs));
AllowOneOnOneSide(GetNonTls13CipherSuites(), (cs) => false, (cs) => ret.Add(cs));

return ret;
}
Expand Down

0 comments on commit ca00e71

Please sign in to comment.