/// <summary>
        /// Master: Get released msg from a host
        /// </summary>
        public void GetReleasedMsg_CT(string id, string fromIpAndPort)
        {
            LogHelper.WriteStatus("Master: Released from " + fromIpAndPort);
            _module.State = AccessState.Released;

            var next = _module.PopRequest();

            if (next != null)
            {
                SendAcceptResponse(next.IpAndPort);
            }
        }