2019-08-21 20:52:24 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* dtls_server.cpp */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
2020-02-19 19:27:19 +00:00
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
2019-08-21 20:52:24 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
#include "dtls_server.h"
|
2020-05-12 15:01:17 +00:00
|
|
|
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/config/project_settings.h"
|
2021-06-11 12:51:48 +00:00
|
|
|
#include "core/io/file_access.h"
|
2019-08-21 20:52:24 +00:00
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
DTLSServer *(*DTLSServer::_create)() = nullptr;
|
2019-08-21 20:52:24 +00:00
|
|
|
bool DTLSServer::available = false;
|
|
|
|
|
|
|
|
DTLSServer *DTLSServer::create() {
|
2020-06-06 14:51:16 +00:00
|
|
|
if (_create) {
|
|
|
|
return _create();
|
|
|
|
}
|
|
|
|
return nullptr;
|
2019-08-21 20:52:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DTLSServer::is_available() {
|
|
|
|
return available;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DTLSServer::_bind_methods() {
|
2023-01-20 00:51:35 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("setup", "server_options"), &DTLSServer::setup);
|
2019-08-21 20:52:24 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("take_connection", "udp_peer"), &DTLSServer::take_connection);
|
|
|
|
}
|