aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/InteropTestsLocalCleartext.m
diff options
context:
space:
mode:
Diffstat (limited to 'src/objective-c/tests/InteropTestsLocalCleartext.m')
-rw-r--r--src/objective-c/tests/InteropTestsLocalCleartext.m12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/objective-c/tests/InteropTestsLocalCleartext.m b/src/objective-c/tests/InteropTestsLocalCleartext.m
index d49e875bd0..a9c6918333 100644
--- a/src/objective-c/tests/InteropTestsLocalCleartext.m
+++ b/src/objective-c/tests/InteropTestsLocalCleartext.m
@@ -41,6 +41,14 @@ static int32_t kLocalInteropServerOverhead = 10;
return kLocalCleartextHost;
}
++ (NSString *)PEMRootCertificates {
+ return nil;
+}
+
++ (NSString *)hostNameOverride {
+ return nil;
+}
+
- (int32_t)encodingOverhead {
return kLocalInteropServerOverhead; // bytes
}
@@ -52,4 +60,8 @@ static int32_t kLocalInteropServerOverhead = 10;
[GRPCCall useInsecureConnectionsForHost:kLocalCleartextHost];
}
++ (GRPCTransportType)transportType {
+ return GRPCTransportTypeInsecure;
+}
+
@end