Browse Source

Changed default for p_validate_certs to true.
Fixes #37084

(cherry picked from commit 2584eb9c69e26bb1477c4251cebc3bcb5899f856)

simpuid 5 years ago
parent
commit
92964c5889
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/mbedtls/packet_peer_mbed_dtls.h

+ 1 - 1
modules/mbedtls/packet_peer_mbed_dtls.h

@@ -67,7 +67,7 @@ protected:
 public:
 	virtual void poll();
 	virtual Error accept_peer(Ref<PacketPeerUDP> p_base, Ref<CryptoKey> p_key, Ref<X509Certificate> p_cert = Ref<X509Certificate>(), Ref<X509Certificate> p_ca_chain = Ref<X509Certificate>(), Ref<CookieContextMbedTLS> p_cookies = Ref<CookieContextMbedTLS>());
-	virtual Error connect_to_peer(Ref<PacketPeerUDP> p_base, bool p_validate_certs = false, const String &p_for_hostname = String(), Ref<X509Certificate> p_ca_certs = Ref<X509Certificate>());
+	virtual Error connect_to_peer(Ref<PacketPeerUDP> p_base, bool p_validate_certs = true, const String &p_for_hostname = String(), Ref<X509Certificate> p_ca_certs = Ref<X509Certificate>());
 	virtual Status get_status() const;
 
 	virtual void disconnect_from_peer();