aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/security/security_context.h
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2015-01-15 16:44:13 -0800
committerGravatar Julien Boeuf <jboeuf@google.com>2015-01-20 22:18:15 -0800
commit8fbcc4391ef8ea178520f2e15c07a505621244a6 (patch)
treefb55328c7de9e66c534a2e987f561794fc2e3ee3 /src/core/security/security_context.h
parent18d4a86982178ff7bbec345a9772184c713cda35 (diff)
Changing the SSL (Server) Credentials API.
- Changed the unsigned char * + size to NULL terminated strings which makes sense for the PEM format. I may change TSI later (but the impact will hopefully be much more limited). - Added a way to pass multiple key/cert pairs to servers which is needed when hosting more than one domain. - Removed the C++ SSL credentials tests as we are going to have an option to not specify the roots which will then be derived from the environment (well-known platform dependent locations and/or environment variable). - Fixed the php build which is the only one added in the run_test.py. This change will certainly break node, python and ruby.
Diffstat (limited to 'src/core/security/security_context.h')
-rw-r--r--src/core/security/security_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/security/security_context.h b/src/core/security/security_context.h
index 9ace7f1ccb..2caa2d3690 100644
--- a/src/core/security/security_context.h
+++ b/src/core/security/security_context.h
@@ -157,7 +157,7 @@ grpc_security_status grpc_ssl_channel_security_context_create(
specific error code otherwise.
*/
grpc_security_status grpc_ssl_server_security_context_create(
- const grpc_ssl_config *config, grpc_security_context **ctx);
+ const grpc_ssl_server_config *config, grpc_security_context **ctx);
/* --- Creation of high level objects. --- */