summaryrefslogtreecommitdiffstats
path: root/core/io/stream_peer_tls.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/io/stream_peer_tls.cpp')
-rw-r--r--core/io/stream_peer_tls.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/io/stream_peer_tls.cpp b/core/io/stream_peer_tls.cpp
index 69877974e6..f04e217a26 100644
--- a/core/io/stream_peer_tls.cpp
+++ b/core/io/stream_peer_tls.cpp
@@ -32,11 +32,11 @@
#include "core/config/engine.h"
-StreamPeerTLS *(*StreamPeerTLS::_create)() = nullptr;
+StreamPeerTLS *(*StreamPeerTLS::_create)(bool p_notify_postinitialize) = nullptr;
-StreamPeerTLS *StreamPeerTLS::create() {
+StreamPeerTLS *StreamPeerTLS::create(bool p_notify_postinitialize) {
if (_create) {
- return _create();
+ return _create(p_notify_postinitialize);
}
return nullptr;
}