Exemple #1
0
        //=====================================================================
        /// <summary>
        /// Send response to connect by sending ACK to connect request
        /// </summary>
        /// <param name="destMan">MAC address od STA device</param>
        public void SendConnectionACK(string destMan)
        {
            var ack = new ConnectionACK(CreatePacket())
            {
                Destination = destMan
            };

            this.SendData(ack);
        }
        //*********************************************************************
        public void SendConnectionACK(String DEST_MAN)
        {
            //while (_Enabled)
            //{
            ConnectionACK _ack = new ConnectionACK(CreatePacket());

            _ack.Destination = DEST_MAN;
            this.SendData(_ack);
            //Thread.Sleep(_BeaconPeriod);
            //}
        }