CSharpRTMP.Core.Protocols.Rtmp.BaseRTMPAppProtocolHandler.AuthenticateInbound C# (CSharp) Method

AuthenticateInbound() private method

private AuthenticateInbound ( BaseRTMPProtocol pFrom, AmfMessage request, Variant authState ) : bool
pFrom BaseRTMPProtocol
request AmfMessage
authState Variant
return bool
        private bool AuthenticateInbound(BaseRTMPProtocol pFrom,  AmfMessage request, Variant authState)
        {
            if (_authMethod == Defines.CONF_APPLICATION_AUTH_TYPE_ADOBE)
                return AuthenticateInboundAdobe(pFrom, request, authState);
            Logger.FATAL("Auth scheme not supported: {0}", _authMethod);
            return false;
        }