I have some code that uses Indy.Sockets.UDPClient to send messages to pcs on a LAN network using the ip address and listening port(which I store in a database):
public static void SendMessage(Client pClient)
{
UDPClient udpClient = new UDPClient();
udpClient.Host = pClient.ServerIP;
udpClient.Port = pClient.fListeningOnUDPPort;
udpClient.SendBuffer(pClient.RestartMessage);
}
but requirements have changed and I now need to be able to send messages using the MAC address instead(also stored in database), is it possible to send a similar message using MAC address?
Or is it possible to get the IP address of the PC from the known MAC address?