[rtmpdump] [PATCH] Better URL decoding support
Steven Penny
svnpenn at gmail.com
Thu Oct 25 07:19:21 CEST 2012
On Wed, Oct 24, 2012 at 11:45 PM, NhJm wrote:
> The _official_ RTMP client does not decode URLs prior to sending them to the
> server, therefore rtmpdump should not be decoding URLs either.
So then what does this do? Taken from official master parseurl.c
if (*p == '%') {
unsigned int c;
sscanf(p+1, "%02x", &c);
*destptr++ = c;
pplen -= 3;
p += 3;
More information about the rtmpdump
mailing list