Пример #1
0
    /// <summary>
    /// Total number of connections we are allowed.
    /// </summary>
    public uint GetMaximumConnections()
    {
        if (peer == null)
        {
            return(0);
        }

        return(peer.GetMaximumConnections());
    }