File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
client-sdk/include/launchdarkly/client_side/bindings/c/config
server-sdk/include/launchdarkly/server_side/bindings/c/config
server-sent-events/include/launchdarkly/sse Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ LDClientHttpPropertiesTlsBuilder_Free(LDClientHttpPropertiesTlsBuilder b);
429
429
* use-case calls for it.
430
430
*
431
431
* @param b Client config builder. Must not be NULL.
432
- * @param skip_verify_peer False to skip verification.
432
+ * @param skip_verify_peer True to skip verification.
433
433
*/
434
434
LD_EXPORT (void )
435
435
LDClientHttpPropertiesTlsBuilder_SkipVerifyPeer (
Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ LDServerHttpPropertiesTlsBuilder_Free(LDServerHttpPropertiesTlsBuilder b);
389
389
* use-case calls for it.
390
390
*
391
391
* @param b Server config builder. Must not be NULL.
392
- * @param skip_verify_peer False to skip verification.
392
+ * @param skip_verify_peer True to skip verification.
393
393
*/
394
394
LD_EXPORT (void )
395
395
LDServerHttpPropertiesTlsBuilder_SkipVerifyPeer (
Original file line number Diff line number Diff line change @@ -132,9 +132,10 @@ class Builder {
132
132
Builder& errors (ErrorCallback callback);
133
133
134
134
/* *
135
- * If connecting to a TLS endpoint, whether to verify the remote
136
- * peer's certificates.
137
- * @param verify_peer True to verify the peer, false otherwise.
135
+ * If connecting to an endpoint with TLS, whether to skip verifying the
136
+ * remote peer's certificates. Verification is enabled by default.
137
+ *
138
+ * @param verify_peer True to skip verification, false to verify.
138
139
* @return Reference to this builder.
139
140
*/
140
141
Builder& skip_verify_peer (bool skip_verify_peer);
You can’t perform that action at this time.
0 commit comments