mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
rtsp-session-pool: Avoid dollar sign ($) in session ids
Live555 in VLC strips off dollar signs and then gets very confused, we don't loose too much entropy by just skipping it.
This commit is contained in:
parent
0ea68a1b0f
commit
ee3a7b61ef
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ static const gchar session_id_charset[] =
|
|||
'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D',
|
||||
'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
|
||||
'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7',
|
||||
'8', '9', '$', '-', '_', '.', '+'
|
||||
'8', '9', '-', '_', '.', '+' /* '$' Live555 in VLC strips off $ chars */
|
||||
};
|
||||
|
||||
enum
|
||||
|
|
Loading…
Reference in a new issue