class_streampeerssl.rst 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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:`RefCounted<class_RefCounted>` **<** :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. \ **Note:** When exporting to Android, make sure to enable the ``INTERNET`` permission in the Android export preset before exporting the project or using one-click deploy. Otherwise, network communication of any kind will be blocked by Android.
  14. Tutorials
  15. ---------
  16. - :doc:`SSL certificates <../tutorials/networking/ssl_certificates>`
  17. Properties
  18. ----------
  19. +-------------------------+----------------------------------------------------------------------------+----------+
  20. | :ref:`bool<class_bool>` | :ref:`blocking_handshake<class_StreamPeerSSL_property_blocking_handshake>` | ``true`` |
  21. +-------------------------+----------------------------------------------------------------------------+----------+
  22. Methods
  23. -------
  24. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  25. | :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 **)** |
  26. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :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 **)** |
  28. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  29. | void | :ref:`disconnect_from_stream<class_StreamPeerSSL_method_disconnect_from_stream>` **(** **)** |
  30. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  31. | :ref:`Status<enum_StreamPeerSSL_Status>` | :ref:`get_status<class_StreamPeerSSL_method_get_status>` **(** **)** |const| |
  32. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  33. | void | :ref:`poll<class_StreamPeerSSL_method_poll>` **(** **)** |
  34. +------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  35. Enumerations
  36. ------------
  37. .. _enum_StreamPeerSSL_Status:
  38. .. _class_StreamPeerSSL_constant_STATUS_DISCONNECTED:
  39. .. _class_StreamPeerSSL_constant_STATUS_HANDSHAKING:
  40. .. _class_StreamPeerSSL_constant_STATUS_CONNECTED:
  41. .. _class_StreamPeerSSL_constant_STATUS_ERROR:
  42. .. _class_StreamPeerSSL_constant_STATUS_ERROR_HOSTNAME_MISMATCH:
  43. enum **Status**:
  44. - **STATUS_DISCONNECTED** = **0** --- A status representing a ``StreamPeerSSL`` that is disconnected.
  45. - **STATUS_HANDSHAKING** = **1** --- A status representing a ``StreamPeerSSL`` during handshaking.
  46. - **STATUS_CONNECTED** = **2** --- A status representing a ``StreamPeerSSL`` that is connected to a host.
  47. - **STATUS_ERROR** = **3** --- A status representing a ``StreamPeerSSL`` in error state.
  48. - **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.
  49. Property Descriptions
  50. ---------------------
  51. .. _class_StreamPeerSSL_property_blocking_handshake:
  52. - :ref:`bool<class_bool>` **blocking_handshake**
  53. +-----------+---------------------------------------+
  54. | *Default* | ``true`` |
  55. +-----------+---------------------------------------+
  56. | *Setter* | set_blocking_handshake_enabled(value) |
  57. +-----------+---------------------------------------+
  58. | *Getter* | is_blocking_handshake_enabled() |
  59. +-----------+---------------------------------------+
  60. Method Descriptions
  61. -------------------
  62. .. _class_StreamPeerSSL_method_accept_stream:
  63. - :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 **)**
  64. 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.
  65. ----
  66. .. _class_StreamPeerSSL_method_connect_to_stream:
  67. - :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 **)**
  68. 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``.
  69. \ **Note:** Specifying a custom ``valid_certificate`` is not supported in HTML5 exports due to browsers restrictions.
  70. ----
  71. .. _class_StreamPeerSSL_method_disconnect_from_stream:
  72. - void **disconnect_from_stream** **(** **)**
  73. Disconnects from host.
  74. ----
  75. .. _class_StreamPeerSSL_method_get_status:
  76. - :ref:`Status<enum_StreamPeerSSL_Status>` **get_status** **(** **)** |const|
  77. Returns the status of the connection. See :ref:`Status<enum_StreamPeerSSL_Status>` for values.
  78. ----
  79. .. _class_StreamPeerSSL_method_poll:
  80. - void **poll** **(** **)**
  81. 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.
  82. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  83. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  84. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  85. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  86. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  87. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`