|
|
|
@ -93,6 +93,9 @@ grpc_tls_credentials_options_set_cert_request_type_type grpc_tls_credentials_opt |
|
|
|
|
grpc_tls_credentials_options_set_crl_directory_type grpc_tls_credentials_options_set_crl_directory_import; |
|
|
|
|
grpc_tls_credentials_options_set_verify_server_cert_type grpc_tls_credentials_options_set_verify_server_cert_import; |
|
|
|
|
grpc_tls_credentials_options_set_send_client_ca_list_type grpc_tls_credentials_options_set_send_client_ca_list_import; |
|
|
|
|
grpc_ssl_session_cache_create_lru_type grpc_ssl_session_cache_create_lru_import; |
|
|
|
|
grpc_ssl_session_cache_destroy_type grpc_ssl_session_cache_destroy_import; |
|
|
|
|
grpc_ssl_session_cache_create_channel_arg_type grpc_ssl_session_cache_create_channel_arg_import; |
|
|
|
|
grpc_insecure_credentials_create_type grpc_insecure_credentials_create_import; |
|
|
|
|
grpc_insecure_server_credentials_create_type grpc_insecure_server_credentials_create_import; |
|
|
|
|
grpc_xds_credentials_create_type grpc_xds_credentials_create_import; |
|
|
|
@ -192,9 +195,6 @@ grpc_auth_context_release_type grpc_auth_context_release_import; |
|
|
|
|
grpc_auth_context_add_property_type grpc_auth_context_add_property_import; |
|
|
|
|
grpc_auth_context_add_cstring_property_type grpc_auth_context_add_cstring_property_import; |
|
|
|
|
grpc_auth_context_set_peer_identity_property_name_type grpc_auth_context_set_peer_identity_property_name_import; |
|
|
|
|
grpc_ssl_session_cache_create_lru_type grpc_ssl_session_cache_create_lru_import; |
|
|
|
|
grpc_ssl_session_cache_destroy_type grpc_ssl_session_cache_destroy_import; |
|
|
|
|
grpc_ssl_session_cache_create_channel_arg_type grpc_ssl_session_cache_create_channel_arg_import; |
|
|
|
|
grpc_set_ssl_roots_override_callback_type grpc_set_ssl_roots_override_callback_import; |
|
|
|
|
grpc_max_auth_token_lifetime_type grpc_max_auth_token_lifetime_import; |
|
|
|
|
grpc_call_set_credentials_type grpc_call_set_credentials_import; |
|
|
|
@ -383,6 +383,9 @@ void grpc_rb_load_imports(HMODULE library) { |
|
|
|
|
grpc_tls_credentials_options_set_crl_directory_import = (grpc_tls_credentials_options_set_crl_directory_type) GetProcAddress(library, "grpc_tls_credentials_options_set_crl_directory"); |
|
|
|
|
grpc_tls_credentials_options_set_verify_server_cert_import = (grpc_tls_credentials_options_set_verify_server_cert_type) GetProcAddress(library, "grpc_tls_credentials_options_set_verify_server_cert"); |
|
|
|
|
grpc_tls_credentials_options_set_send_client_ca_list_import = (grpc_tls_credentials_options_set_send_client_ca_list_type) GetProcAddress(library, "grpc_tls_credentials_options_set_send_client_ca_list"); |
|
|
|
|
grpc_ssl_session_cache_create_lru_import = (grpc_ssl_session_cache_create_lru_type) GetProcAddress(library, "grpc_ssl_session_cache_create_lru"); |
|
|
|
|
grpc_ssl_session_cache_destroy_import = (grpc_ssl_session_cache_destroy_type) GetProcAddress(library, "grpc_ssl_session_cache_destroy"); |
|
|
|
|
grpc_ssl_session_cache_create_channel_arg_import = (grpc_ssl_session_cache_create_channel_arg_type) GetProcAddress(library, "grpc_ssl_session_cache_create_channel_arg"); |
|
|
|
|
grpc_insecure_credentials_create_import = (grpc_insecure_credentials_create_type) GetProcAddress(library, "grpc_insecure_credentials_create"); |
|
|
|
|
grpc_insecure_server_credentials_create_import = (grpc_insecure_server_credentials_create_type) GetProcAddress(library, "grpc_insecure_server_credentials_create"); |
|
|
|
|
grpc_xds_credentials_create_import = (grpc_xds_credentials_create_type) GetProcAddress(library, "grpc_xds_credentials_create"); |
|
|
|
@ -482,9 +485,6 @@ void grpc_rb_load_imports(HMODULE library) { |
|
|
|
|
grpc_auth_context_add_property_import = (grpc_auth_context_add_property_type) GetProcAddress(library, "grpc_auth_context_add_property"); |
|
|
|
|
grpc_auth_context_add_cstring_property_import = (grpc_auth_context_add_cstring_property_type) GetProcAddress(library, "grpc_auth_context_add_cstring_property"); |
|
|
|
|
grpc_auth_context_set_peer_identity_property_name_import = (grpc_auth_context_set_peer_identity_property_name_type) GetProcAddress(library, "grpc_auth_context_set_peer_identity_property_name"); |
|
|
|
|
grpc_ssl_session_cache_create_lru_import = (grpc_ssl_session_cache_create_lru_type) GetProcAddress(library, "grpc_ssl_session_cache_create_lru"); |
|
|
|
|
grpc_ssl_session_cache_destroy_import = (grpc_ssl_session_cache_destroy_type) GetProcAddress(library, "grpc_ssl_session_cache_destroy"); |
|
|
|
|
grpc_ssl_session_cache_create_channel_arg_import = (grpc_ssl_session_cache_create_channel_arg_type) GetProcAddress(library, "grpc_ssl_session_cache_create_channel_arg"); |
|
|
|
|
grpc_set_ssl_roots_override_callback_import = (grpc_set_ssl_roots_override_callback_type) GetProcAddress(library, "grpc_set_ssl_roots_override_callback"); |
|
|
|
|
grpc_max_auth_token_lifetime_import = (grpc_max_auth_token_lifetime_type) GetProcAddress(library, "grpc_max_auth_token_lifetime"); |
|
|
|
|
grpc_call_set_credentials_import = (grpc_call_set_credentials_type) GetProcAddress(library, "grpc_call_set_credentials"); |
|
|
|
|