Skip to content

Commit

Permalink
moving to predictable types
Browse files Browse the repository at this point in the history
  • Loading branch information
deemru committed Mar 27, 2024
1 parent 88aa765 commit 6d1ed22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion patch/chromium.patch
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ index 236de0c0bb686..a282b59661258 100644
+extern "C" {
+void gostssl_newsession( SSL * s, const void * cachestring, size_t len, const void * cert, int size, const char * ciphers, const char * tlsmode );
+void gostssl_certhook( void * cert, int size );
+void gostssl_verifyhook( void * s, const char * host, int32_t * is_gost, char offline );
+void gostssl_verifyhook( void * s, const char * host, int32_t * gost_status, char offline );
+int gostssl_is_msspi( SSL * s );
+}
+int SSLClientSocketImpl::IsMSSPI() {
Expand Down
2 changes: 1 addition & 1 deletion src/gostssl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void gostssl_server_proxy( SSL * s, const char * data, size_t len );

// Hooks
DLLEXPORT void gostssl_certhook( void * cert, int size );
DLLEXPORT void gostssl_verifyhook( void * s, const char * host, unsigned * is_gost, char offline );
DLLEXPORT void gostssl_verifyhook( void * s, const char * host, int32_t * gost_status, char offline );
DLLEXPORT void gostssl_clientcertshook( char *** certs, int ** lens, wchar_t *** names, int * count, int * is_gost );
DLLEXPORT void gostssl_isgostcerthook( void * cert, int size, int * is_gost );
DLLEXPORT void gostssl_newsession( SSL * s, const void * cachestring, size_t len, const void * cert, int size, const char * ciphers, const char * tlsmode );
Expand Down

0 comments on commit 6d1ed22

Please sign in to comment.