This commit is contained in:
aler9
2021-01-17 23:08:14 +01:00
parent f3e56cee37
commit 9602c653a7

View File

@@ -5,15 +5,6 @@ import (
"net/url"
)
func stringsReverseIndexByte(s string, c byte) int {
for i := len(s) - 1; i >= 0; i-- {
if s[i] == c {
return i
}
}
return -1
}
// URL is a RTSP URL.
// This is basically an HTTP URL with some additional functions to handle
// control attributes.