Example #1
0
        public void GenRandomMac()
        {
            var mac = MAC.GetRandomMac();

            this.Frame.SourceMac   = mac;
            this.tbSourceAddr.Text = mac.ToString();

            mac = MAC.GetRandomMac();
            this.Frame.DestinationMac   = mac;
            this.tbDestinationAddr.Text = mac.ToString();
        }