2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* stream_peer_ssl.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
2018-01-01 13:40:08 +00:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2016-06-18 12:46:12 +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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-04-29 00:56:43 +00:00
|
|
|
#ifndef STREAM_PEER_SSL_H
|
|
|
|
#define STREAM_PEER_SSL_H
|
|
|
|
|
|
|
|
#include "io/stream_peer.h"
|
|
|
|
|
|
|
|
class StreamPeerSSL : public StreamPeer {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(StreamPeerSSL, StreamPeer);
|
|
|
|
|
2016-03-12 13:44:12 +00:00
|
|
|
public:
|
2017-03-05 15:44:50 +00:00
|
|
|
typedef void (*LoadCertsFromMemory)(const PoolByteArray &p_certs);
|
2016-03-12 13:44:12 +00:00
|
|
|
|
2014-04-29 00:56:43 +00:00
|
|
|
protected:
|
2017-03-05 15:44:50 +00:00
|
|
|
static StreamPeerSSL *(*_create)();
|
2014-04-29 00:56:43 +00:00
|
|
|
static void _bind_methods();
|
2016-03-12 13:44:12 +00:00
|
|
|
|
|
|
|
static LoadCertsFromMemory load_certs_func;
|
|
|
|
static bool available;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
friend class Main;
|
2016-03-12 13:44:12 +00:00
|
|
|
static bool initialize_certs;
|
|
|
|
|
2014-04-29 00:56:43 +00:00
|
|
|
public:
|
|
|
|
enum Status {
|
|
|
|
STATUS_DISCONNECTED,
|
|
|
|
STATUS_CONNECTED,
|
|
|
|
STATUS_ERROR_NO_CERTIFICATE,
|
|
|
|
STATUS_ERROR_HOSTNAME_MISMATCH
|
|
|
|
};
|
|
|
|
|
2018-02-09 14:03:34 +00:00
|
|
|
virtual void poll() = 0;
|
2017-03-05 15:44:50 +00:00
|
|
|
virtual Error accept_stream(Ref<StreamPeer> p_base) = 0;
|
|
|
|
virtual Error connect_to_stream(Ref<StreamPeer> p_base, bool p_validate_certs = false, const String &p_for_hostname = String()) = 0;
|
|
|
|
virtual Status get_status() const = 0;
|
2014-04-29 00:56:43 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
virtual void disconnect_from_stream() = 0;
|
2014-04-29 00:56:43 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
static StreamPeerSSL *create();
|
2014-04-29 00:56:43 +00:00
|
|
|
|
2018-03-28 14:26:25 +00:00
|
|
|
static PoolByteArray get_project_cert_array();
|
2017-03-05 15:44:50 +00:00
|
|
|
static void load_certs_from_memory(const PoolByteArray &p_memory);
|
2016-03-12 13:44:12 +00:00
|
|
|
static bool is_available();
|
2014-04-29 00:56:43 +00:00
|
|
|
|
|
|
|
StreamPeerSSL();
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VARIANT_ENUM_CAST(StreamPeerSSL::Status);
|
2014-04-29 00:56:43 +00:00
|
|
|
|
|
|
|
#endif // STREAM_PEER_SSL_H
|