fix bug #59: edge for FMS, always use schema1(digest-key) for FMS, or connect failed.

pull/133/head
winlin 11 years ago
parent b2aab8804b
commit fa9870db96

@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// current release version
#define VERSION_MAJOR "0"
#define VERSION_MINOR "9"
#define VERSION_REVISION "90"
#define VERSION_REVISION "91"
#define RTMP_SIG_SRS_VERSION VERSION_MAJOR"."VERSION_MINOR"."VERSION_REVISION
// server info.
#define RTMP_SIG_SRS_KEY "srs"

@ -1188,7 +1188,8 @@ int SrsComplexHandshake::handshake_with_server(SrsHandshakeBytes* hs_bytes, ISrs
// sign c1
c1s1 c1;
if ((ret = c1.c1_create(srs_schema0)) != ERROR_SUCCESS) {
// @remark, FMS requires the schema1(digest-key), or connect failed.
if ((ret = c1.c1_create(srs_schema1)) != ERROR_SUCCESS) {
return ret;
}
c1.dump(hs_bytes->c0c1 + 1);

@ -43,6 +43,7 @@ namespace srs
*/
enum srs_schema_type {
srs_schema0 = 0, // key-digest sequence
// @remark, FMS requires the schema1(digest-key), or connect failed.
srs_schema1 = 1, // digest-key sequence
srs_schema_invalid = 2,
};

Loading…
Cancel
Save