123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DTLSServer.xml.
- .. _class_DTLSServer:
- DTLSServer
- ==========
- **Inherits:** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
- Helper class to implement a DTLS server.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- This class is used to store the state of a DTLS server. Upon :ref:`setup<class_DTLSServer_method_setup>` it converts connected :ref:`PacketPeerUDP<class_PacketPeerUDP>` to :ref:`PacketPeerDTLS<class_PacketPeerDTLS>` accepting them via :ref:`take_connection<class_DTLSServer_method_take_connection>` as DTLS clients. Under the hood, this class is used to store the DTLS state and cookies of the server. The reason of why the state and cookies are needed is outside of the scope of this documentation.
- Below a small example of how to use it:
- .. tabs::
- .. code-tab:: gdscript
- # server_node.gd
- extends Node
-
- var dtls := DTLSServer.new()
- var server := UDPServer.new()
- var peers = []
-
- func _ready():
- server.listen(4242)
- var key = load("key.key") # Your private key.
- var cert = load("cert.crt") # Your X509 certificate.
- dtls.setup(key, cert)
-
- func _process(delta):
- while server.is_connection_available():
- var peer: PacketPeerUDP = server.take_connection()
- var dtls_peer: PacketPeerDTLS = dtls.take_connection(peer)
- if dtls_peer.get_status() != PacketPeerDTLS.STATUS_HANDSHAKING:
- continue # It is normal that 50% of the connections fails due to cookie exchange.
- print("Peer connected!")
- peers.append(dtls_peer)
-
- for p in peers:
- p.poll() # Must poll to update the state.
- if p.get_status() == PacketPeerDTLS.STATUS_CONNECTED:
- while p.get_available_packet_count() > 0:
- print("Received message from client: %s" % p.get_packet().get_string_from_utf8())
- p.put_packet("Hello DTLS client".to_utf8_buffer())
- .. code-tab:: csharp
- // ServerNode.cs
- using Godot;
-
- public partial class ServerNode : Node
- {
- private DtlsServer _dtls = new DtlsServer();
- private UdpServer _server = new UdpServer();
- private Godot.Collections.Array<PacketPeerDTLS> _peers = new Godot.Collections.Array<PacketPeerDTLS>();
-
- public override void _Ready()
- {
- _server.Listen(4242);
- var key = GD.Load<CryptoKey>("key.key"); // Your private key.
- var cert = GD.Load<X509Certificate>("cert.crt"); // Your X509 certificate.
- _dtls.Setup(key, cert);
- }
-
- public override void _Process(double delta)
- {
- while (Server.IsConnectionAvailable())
- {
- PacketPeerUDP peer = _server.TakeConnection();
- PacketPeerDTLS dtlsPeer = _dtls.TakeConnection(peer);
- if (dtlsPeer.GetStatus() != PacketPeerDtls.Status.Handshaking)
- {
- continue; // It is normal that 50% of the connections fails due to cookie exchange.
- }
- GD.Print("Peer connected!");
- _peers.Add(dtlsPeer);
- }
-
- foreach (var p in _peers)
- {
- p.Poll(); // Must poll to update the state.
- if (p.GetStatus() == PacketPeerDtls.Status.Connected)
- {
- while (p.GetAvailablePacketCount() > 0)
- {
- GD.Print($"Received Message From Client: {p.GetPacket().GetStringFromUtf8()}");
- p.PutPacket("Hello DTLS Client".ToUtf8Buffer());
- }
- }
- }
- }
- }
- .. tabs::
- .. code-tab:: gdscript
- # client_node.gd
- extends Node
-
- var dtls := PacketPeerDTLS.new()
- var udp := PacketPeerUDP.new()
- var connected = false
-
- func _ready():
- udp.connect_to_host("127.0.0.1", 4242)
- dtls.connect_to_peer(udp, false) # Use true in production for certificate validation!
-
- func _process(delta):
- dtls.poll()
- if dtls.get_status() == PacketPeerDTLS.STATUS_CONNECTED:
- if !connected:
- # Try to contact server
- dtls.put_packet("The answer is... 42!".to_utf8_buffer())
- while dtls.get_available_packet_count() > 0:
- print("Connected: %s" % dtls.get_packet().get_string_from_utf8())
- connected = true
- .. code-tab:: csharp
- // ClientNode.cs
- using Godot;
- using System.Text;
-
- public partial class ClientNode : Node
- {
- private PacketPeerDtls _dtls = new PacketPeerDtls();
- private PacketPeerUdp _udp = new PacketPeerUdp();
- private bool _connected = false;
-
- public override void _Ready()
- {
- _udp.ConnectToHost("127.0.0.1", 4242);
- _dtls.ConnectToPeer(_udp, validateCerts: false); // Use true in production for certificate validation!
- }
-
- public override void _Process(double delta)
- {
- _dtls.Poll();
- if (_dtls.GetStatus() == PacketPeerDtls.Status.Connected)
- {
- if (!_connected)
- {
- // Try to contact server
- _dtls.PutPacket("The Answer Is..42!".ToUtf8Buffer());
- }
- while (_dtls.GetAvailablePacketCount() > 0)
- {
- GD.Print($"Connected: {_dtls.GetPacket().GetStringFromUtf8()}");
- _connected = true;
- }
- }
- }
- }
- .. rst-class:: classref-reftable-group
- Methods
- -------
- .. table::
- :widths: auto
- +---------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`setup<class_DTLSServer_method_setup>` **(** :ref:`TLSOptions<class_TLSOptions>` server_options **)** |
- +---------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`PacketPeerDTLS<class_PacketPeerDTLS>` | :ref:`take_connection<class_DTLSServer_method_take_connection>` **(** :ref:`PacketPeerUDP<class_PacketPeerUDP>` udp_peer **)** |
- +---------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Method Descriptions
- -------------------
- .. _class_DTLSServer_method_setup:
- .. rst-class:: classref-method
- :ref:`Error<enum_@GlobalScope_Error>` **setup** **(** :ref:`TLSOptions<class_TLSOptions>` server_options **)**
- Setup the DTLS server to use the given ``server_options``. See :ref:`TLSOptions.server<class_TLSOptions_method_server>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_DTLSServer_method_take_connection:
- .. rst-class:: classref-method
- :ref:`PacketPeerDTLS<class_PacketPeerDTLS>` **take_connection** **(** :ref:`PacketPeerUDP<class_PacketPeerUDP>` udp_peer **)**
- Try to initiate the DTLS handshake with the given ``udp_peer`` which must be already connected (see :ref:`PacketPeerUDP.connect_to_host<class_PacketPeerUDP_method_connect_to_host>`).
- \ **Note:** You must check that the state of the return PacketPeerUDP is :ref:`PacketPeerDTLS.STATUS_HANDSHAKING<class_PacketPeerDTLS_constant_STATUS_HANDSHAKING>`, as it is normal that 50% of the new connections will be invalid due to cookie exchange.
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
- .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
- .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
- .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
|