mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
rtspconnection: CSeq initial value set to 0
RFC 7826: "it is RECOMMENDED to start at 0.
This commit is contained in:
parent
06b600901c
commit
487595a7d6
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ gst_rtsp_connection_create (const GstRTSPUrl * url, GstRTSPConnection ** conn)
|
|||
newconn->url = gst_rtsp_url_copy (url);
|
||||
newconn->timer = g_timer_new ();
|
||||
newconn->timeout = 60;
|
||||
newconn->cseq = 1;
|
||||
newconn->cseq = 0; /* RFC 7826: "it is RECOMMENDED to start at 0." */
|
||||
|
||||
newconn->remember_session_id = TRUE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue