Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
40ee2aa4
Commit
40ee2aa4
authored
9 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Fix another path
parent
eff44d79
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/interop-test-descriptions.md
+2
-2
2 additions, 2 deletions
doc/interop-test-descriptions.md
test/core/bad_ssl/servers/cert.c
+2
-2
2 additions, 2 deletions
test/core/bad_ssl/servers/cert.c
with
4 additions
and
4 deletions
doc/interop-test-descriptions.md
+
2
−
2
View file @
40ee2aa4
...
@@ -27,7 +27,7 @@ Clients should accept these arguments:
...
@@ -27,7 +27,7 @@ Clients should accept these arguments:
*
Whether to use a plaintext or encrypted connection
*
Whether to use a plaintext or encrypted connection
*
--use_test_ca=BOOLEAN
*
--use_test_ca=BOOLEAN
*
Whether to replace platform root CAs with
*
Whether to replace platform root CAs with
[
ca.pem
](
https://github.com/grpc/grpc/blob/master/src/core/tsi/test_creds/ca.pem
)
[
ca.pem
](
https://github.com/grpc/grpc/blob/master/src/core/
lib/
tsi/test_creds/ca.pem
)
as the CA root
as the CA root
*
--default_service_account=ACCOUNT_EMAIL
*
--default_service_account=ACCOUNT_EMAIL
*
Email of the GCE default service account. Only applicable
*
Email of the GCE default service account. Only applicable
...
@@ -920,7 +920,7 @@ Servers should accept these arguments:
...
@@ -920,7 +920,7 @@ Servers should accept these arguments:
* Whether to use a plaintext or encrypted connection
* Whether to use a plaintext or encrypted connection
Servers must support TLS with ALPN. They should use
Servers must support TLS with ALPN. They should use
[
server1.pem
](
https://github.com/grpc/grpc/blob/master/src/core/tsi/test_creds/server1.pem
)
[
server1.pem
](
https://github.com/grpc/grpc/blob/master/src/core/
lib/
tsi/test_creds/server1.pem
)
for their certificate.
for their certificate.
### EmptyCall
### EmptyCall
...
...
This diff is collapsed.
Click to expand it.
test/core/bad_ssl/servers/cert.c
+
2
−
2
View file @
40ee2aa4
...
@@ -56,9 +56,9 @@ int main(int argc, char **argv) {
...
@@ -56,9 +56,9 @@ int main(int argc, char **argv) {
grpc_init
();
grpc_init
();
cert_slice
=
gpr_load_file
(
"src/core/tsi/test_creds/badserver.pem"
,
1
,
&
ok
);
cert_slice
=
gpr_load_file
(
"src/core/
lib/
tsi/test_creds/badserver.pem"
,
1
,
&
ok
);
GPR_ASSERT
(
ok
);
GPR_ASSERT
(
ok
);
key_slice
=
gpr_load_file
(
"src/core/tsi/test_creds/badserver.key"
,
1
,
&
ok
);
key_slice
=
gpr_load_file
(
"src/core/
lib/
tsi/test_creds/badserver.key"
,
1
,
&
ok
);
GPR_ASSERT
(
ok
);
GPR_ASSERT
(
ok
);
pem_key_cert_pair
.
private_key
=
(
const
char
*
)
GPR_SLICE_START_PTR
(
key_slice
);
pem_key_cert_pair
.
private_key
=
(
const
char
*
)
GPR_SLICE_START_PTR
(
key_slice
);
pem_key_cert_pair
.
cert_chain
=
(
const
char
*
)
GPR_SLICE_START_PTR
(
cert_slice
);
pem_key_cert_pair
.
cert_chain
=
(
const
char
*
)
GPR_SLICE_START_PTR
(
cert_slice
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment