Difference between revisions of "enet.peer (Français)"

(Created page with "== Description == Un pair ENet avec lequel les paquets de données peuvent être envoyés ou reçus. Dans la majorité des applications vous garderez la piste des pairs connec...")
 
(Voir également)
Line 57: Line 57:
 
* [[enet.event (Français)]]
 
* [[enet.event (Français)]]
 
* [[enet.host (Français)]]
 
* [[enet.host (Français)]]
 +
[[Category:Type (Français)]]
 
{{#set:Since=000}}
 
{{#set:Since=000}}
  
 
== Autres langues ==
 
== Autres langues ==
 
{{i18n|enet.peer}}
 
{{i18n|enet.peer}}

Revision as of 18:02, 24 September 2021

Description

Un pair ENet avec lequel les paquets de données peuvent être envoyés ou reçus. Dans la majorité des applications vous garderez la piste des pairs connectés.

Fonctions

Function Description
peer:disconnect Requests a disconnection from the peer.
peer:disconnect_now Force immediate disconnection from peer.
peer:disconnect_later Request a disconnection from peer, but only after all queued outgoing packets are sent.
peer:reset Forcefully disconnects peer. The peer is not notified of the disconnection.
peer:ping Send a ping request to peer, updates round_trip_time. This is called automatically at regular intervals.
peer:receive Attempts to dequeue an incoming packet for this peer.
peer:send Queues a packet to be sent to peer.
peer:throttle_configure Changes the probability at which unreliable packets should not be dropped.
peer:ping_interval Specifies the interval in milliseconds that pings are sent to the other end of the connection (defaults to 500).
peer:timeout Returns or sets the parameters when a timeout is detected.
peer:index Returns the index of the peer.
peer:state Returns the state of the peer.
peer:connect_id Returns the field ENetPeer::connectID that is assigned for each connection.
peer:round_trip_time Returns or sets the current round trip time (i.e. ping).
peer:last_round_trip_time Returns or sets the round trip time of the previous round trip time computation.

Voir également


Autres langues