Is there a way to obtain a MAC address with GNAT.Sockets?
I've read the .ads file several times and seen nothing that looks like it would yield a MAC address.
Is there a way to obtain a MAC address with GNAT.Sockets?
I've read the .ads file several times and seen nothing that looks like it would yield a MAC address.
While googling for your problem, I found a C solution here you could interface to. One advantage of this compared to calling system command is that you don't rely on parsing the output of the command and thus to its format. One drawback is that you have to use Interfacing annex of Ada but as it's standard, it's easy.
Hope this will help.
Get your local socket address with
Get_Socket_Name
and match that to the address of one of your network interfaces.