Enum WebRtcPeerConnection.SignalingState
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum WebRtcPeerConnection.SignalingState : long
Fields
Closed = 5
The WebRtcPeerConnection has been closed.
HaveLocalOffer = 1
The local peer has called SetLocalDescription(string, string), passing in SDP representing an offer (usually created by calling CreateOffer()), and the offer has been applied successfully.
HaveLocalPranswer = 3
The offer sent by the remote peer has been applied and an answer has been created and applied by calling SetLocalDescription(string, string). This provisional answer describes the supported media formats and so forth, but may not have a complete set of ICE candidates included. Further candidates will be delivered separately later.
HaveRemoteOffer = 2
The remote peer has created an offer and used the signaling server to deliver it to the local peer, which has set the offer as the remote description by calling SetRemoteDescription(string, string).
HaveRemotePranswer = 4
A provisional answer has been received and successfully applied in response to an offer previously sent and established by calling SetLocalDescription(string, string).
Stable = 0
There is no ongoing exchange of offer and answer underway. This may mean that the WebRtcPeerConnection is new (New) or that negotiation is complete and a connection has been established (Connected).