class_streampeerssl.rst 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/make_rst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the StreamPeerSSL.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_StreamPeerSSL:
  6. StreamPeerSSL
  7. =============
  8. **Inherits:** :ref:`StreamPeer<class_StreamPeer>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  9. SSL stream peer.
  10. Description
  11. -----------
  12. SSL stream peer. This object can be used to connect to an SSL server or accept a single SSL client connection.
  13. Tutorials
  14. ---------
  15. - :doc:`../tutorials/networking/ssl_certificates`
  16. Properties
  17. ----------
  18. +-------------------------+----------------------------------------------------------------------------+----------+
  19. | :ref:`bool<class_bool>` | :ref:`blocking_handshake<class_StreamPeerSSL_property_blocking_handshake>` | ``true`` |
  20. +-------------------------+----------------------------------------------------------------------------+----------+
  21. Methods
  22. -------
  23. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`accept_stream<class_StreamPeerSSL_method_accept_stream>` **(** :ref:`StreamPeer<class_StreamPeer>` stream, :ref:`CryptoKey<class_CryptoKey>` private_key, :ref:`X509Certificate<class_X509Certificate>` certificate, :ref:`X509Certificate<class_X509Certificate>` chain=null **)** |
  25. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`connect_to_stream<class_StreamPeerSSL_method_connect_to_stream>` **(** :ref:`StreamPeer<class_StreamPeer>` stream, :ref:`bool<class_bool>` validate_certs=false, :ref:`String<class_String>` for_hostname="", :ref:`X509Certificate<class_X509Certificate>` valid_certificate=null **)** |
  27. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | void | :ref:`disconnect_from_stream<class_StreamPeerSSL_method_disconnect_from_stream>` **(** **)** |
  29. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | :ref:`Status<enum_StreamPeerSSL_Status>` | :ref:`get_status<class_StreamPeerSSL_method_get_status>` **(** **)** |const| |
  31. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | void | :ref:`poll<class_StreamPeerSSL_method_poll>` **(** **)** |
  33. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. Enumerations
  35. ------------
  36. .. _enum_StreamPeerSSL_Status:
  37. .. _class_StreamPeerSSL_constant_STATUS_DISCONNECTED:
  38. .. _class_StreamPeerSSL_constant_STATUS_HANDSHAKING:
  39. .. _class_StreamPeerSSL_constant_STATUS_CONNECTED:
  40. .. _class_StreamPeerSSL_constant_STATUS_ERROR:
  41. .. _class_StreamPeerSSL_constant_STATUS_ERROR_HOSTNAME_MISMATCH:
  42. enum **Status**:
  43. - **STATUS_DISCONNECTED** = **0** --- A status representing a ``StreamPeerSSL`` that is disconnected.
  44. - **STATUS_HANDSHAKING** = **1** --- A status representing a ``StreamPeerSSL`` during handshaking.
  45. - **STATUS_CONNECTED** = **2** --- A status representing a ``StreamPeerSSL`` that is connected to a host.
  46. - **STATUS_ERROR** = **3** --- A status representing a ``StreamPeerSSL`` in error state.
  47. - **STATUS_ERROR_HOSTNAME_MISMATCH** = **4** --- An error status that shows a mismatch in the SSL certificate domain presented by the host and the domain requested for validation.
  48. Property Descriptions
  49. ---------------------
  50. .. _class_StreamPeerSSL_property_blocking_handshake:
  51. - :ref:`bool<class_bool>` **blocking_handshake**
  52. +-----------+---------------------------------------+
  53. | *Default* | ``true`` |
  54. +-----------+---------------------------------------+
  55. | *Setter* | set_blocking_handshake_enabled(value) |
  56. +-----------+---------------------------------------+
  57. | *Getter* | is_blocking_handshake_enabled() |
  58. +-----------+---------------------------------------+
  59. Method Descriptions
  60. -------------------
  61. .. _class_StreamPeerSSL_method_accept_stream:
  62. - :ref:`Error<enum_@GlobalScope_Error>` **accept_stream** **(** :ref:`StreamPeer<class_StreamPeer>` stream, :ref:`CryptoKey<class_CryptoKey>` private_key, :ref:`X509Certificate<class_X509Certificate>` certificate, :ref:`X509Certificate<class_X509Certificate>` chain=null **)**
  63. Accepts a peer connection as a server using the given ``private_key`` and providing the given ``certificate`` to the client. You can pass the optional ``chain`` parameter to provide additional CA chain information along with the certificate.
  64. ----
  65. .. _class_StreamPeerSSL_method_connect_to_stream:
  66. - :ref:`Error<enum_@GlobalScope_Error>` **connect_to_stream** **(** :ref:`StreamPeer<class_StreamPeer>` stream, :ref:`bool<class_bool>` validate_certs=false, :ref:`String<class_String>` for_hostname="", :ref:`X509Certificate<class_X509Certificate>` valid_certificate=null **)**
  67. Connects to a peer using an underlying :ref:`StreamPeer<class_StreamPeer>` ``stream``. If ``validate_certs`` is ``true``, ``StreamPeerSSL`` will validate that the certificate presented by the peer matches the ``for_hostname``.
  68. **Note:** Specifying a custom ``valid_certificate`` is not supported in HTML5 exports due to browsers restrictions.
  69. ----
  70. .. _class_StreamPeerSSL_method_disconnect_from_stream:
  71. - void **disconnect_from_stream** **(** **)**
  72. Disconnects from host.
  73. ----
  74. .. _class_StreamPeerSSL_method_get_status:
  75. - :ref:`Status<enum_StreamPeerSSL_Status>` **get_status** **(** **)** |const|
  76. Returns the status of the connection. See :ref:`Status<enum_StreamPeerSSL_Status>` for values.
  77. ----
  78. .. _class_StreamPeerSSL_method_poll:
  79. - void **poll** **(** **)**
  80. Poll the connection to check for incoming bytes. Call this right before :ref:`StreamPeer.get_available_bytes<class_StreamPeer_method_get_available_bytes>` for it to work properly.
  81. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  82. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  83. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`