stream_peer_ssl.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*************************************************************************/
  2. /* stream_peer_ssl.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef STREAM_PEER_SSL_H
  31. #define STREAM_PEER_SSL_H
  32. #include "io/stream_peer.h"
  33. class StreamPeerSSL : public StreamPeer {
  34. OBJ_TYPE(StreamPeerSSL, StreamPeer);
  35. public:
  36. typedef void (*LoadCertsFromMemory)(const ByteArray &p_certs);
  37. protected:
  38. static StreamPeerSSL *(*_create)();
  39. static void _bind_methods();
  40. static LoadCertsFromMemory load_certs_func;
  41. static bool available;
  42. friend class Main;
  43. static bool initialize_certs;
  44. public:
  45. enum Status {
  46. STATUS_DISCONNECTED,
  47. STATUS_CONNECTED,
  48. STATUS_ERROR_NO_CERTIFICATE,
  49. STATUS_ERROR_HOSTNAME_MISMATCH
  50. };
  51. virtual Error accept(Ref<StreamPeer> p_base) = 0;
  52. virtual Error connect(Ref<StreamPeer> p_base, bool p_validate_certs = false, const String &p_for_hostname = String()) = 0;
  53. virtual Status get_status() const = 0;
  54. virtual void disconnect() = 0;
  55. static StreamPeerSSL *create();
  56. static void load_certs_from_memory(const ByteArray &p_memory);
  57. static bool is_available();
  58. StreamPeerSSL();
  59. };
  60. VARIANT_ENUM_CAST(StreamPeerSSL::Status);
  61. #endif // STREAM_PEER_SSL_H