From 1c5234c1b13693e7dfdf186c4eeed56b26b27a2b Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 4 Mar 2013 15:09:26 +0000 Subject: main/rtmpdump: fix for adobe auth against akamai servers --- main/rtmpdump/akamai2.patch | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 main/rtmpdump/akamai2.patch (limited to 'main/rtmpdump/akamai2.patch') diff --git a/main/rtmpdump/akamai2.patch b/main/rtmpdump/akamai2.patch new file mode 100644 index 0000000000..a4fc4720ac --- /dev/null +++ b/main/rtmpdump/akamai2.patch @@ -0,0 +1,28 @@ +http://lists.mplayerhq.hu/pipermail/rtmpdump/2012-December/002252.html + +Some servers (akamai) only include a 'challenge' parameter, no +'opaque' parameter, while others (wowza) include both 'opaque' +and 'challenge'. If 'opaque' is provided, it should be used here, +otherwise 'challenge', but never both. + +After this patch, adobe auth works against both wowza and akamai +servers. +--- + librtmp/rtmp.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/librtmp/rtmp.c b/librtmp/rtmp.c +index d64a0bb..7f1c7ff 100644 +--- a/librtmp/rtmp.c ++++ b/librtmp/rtmp.c +@@ -2609,7 +2609,7 @@ PublisherAuth(RTMP *r, AVal *description) + /* response = base64enc(md5(hash1 + opaque + challenge2)) */ + if (opaque.av_len) + MD5_Update(&md5ctx, opaque.av_val, opaque.av_len); +- if (challenge.av_len) ++ else if (challenge.av_len) + MD5_Update(&md5ctx, challenge.av_val, challenge.av_len); + MD5_Update(&md5ctx, challenge2, B64INT_LEN); + MD5_Final(md5sum_val, &md5ctx); +-- +1.7.9.4 -- cgit v1.2.3