CSharpRTMP.Common.Module.BindAcceptors C# (CSharp) Метод

BindAcceptors() публичный Метод

public BindAcceptors ( ) : bool
Результат bool
        public bool BindAcceptors()
        {
            if (config[CONF_ACCEPTORS] == null) return true;
            foreach (var item in config[CONF_ACCEPTORS].Children.Where(item => !BindAcceptor(item.Value)))
            {
                FATAL("Unable to configure acceptor:\n{0}", item.ToString());
                return false;
            }
            return true;
        }