Added RTMPS push support

This commit is contained in:
Thulinma 2019-06-21 22:53:35 +02:00
parent f4351d4fb4
commit 8fe1dbb618
2 changed files with 33 additions and 27 deletions

View file

@ -152,6 +152,7 @@ uint32_t HTTP::URL::getDefaultPort() const{
if (protocol == "http"){return 80;}
if (protocol == "https"){return 443;}
if (protocol == "rtmp"){return 1935;}
if (protocol == "rtmps"){return 443;}
if (protocol == "dtsc"){return 4200;}
if (protocol == "rtsp"){return 554;}
return 0;