Lines Matching refs:broadcast_reciept
127 internal static MionIdentifier TryCreate(byte[] broadcast_reciept, IPEndPoint location) in TryCreate() argument
145 if (broadcast_reciept[0] == (byte)MionUdp.MionCmdByte.Acknowledge) in TryCreate()
147 return new MionIdentifier(broadcast_reciept, location); in TryCreate()
155 private MionIdentifier(byte[] broadcast_reciept, IPEndPoint location) in MionIdentifier() argument
157 Flags = broadcast_reciept[k_flags_idx]; in MionIdentifier()
158 MACAddress = NetworkInterfaceExplorer.GetPrettyMAC(broadcast_reciept, k_mac_addr_idx); in MionIdentifier()
159 …Name = ASCIIEncoding.ASCII.GetString(broadcast_reciept, k_machine_name_idx, broadcast_reciept[k_na… in MionIdentifier()
162 …FieldProgrammableGateArrayVersion = String.Format("{0}.{1}.{2}.{3}", broadcast_reciept[k_fpga_idx … in MionIdentifier()
163 …broadcast_reciept[k_fpga_idx + 1], broadcast_reciept[k_fpga_idx + 2], broadcast_reciept[k_fpga_idx… in MionIdentifier()
165 FirmwareVersion = String.Format("{0}.{1}.{2}.{3}", broadcast_reciept[k_fw_ver_idx + 0], in MionIdentifier()
166 …broadcast_reciept[k_fw_ver_idx + 1], broadcast_reciept[k_fw_ver_idx + 2], broadcast_reciept[k_fw_v… in MionIdentifier()