i want to get the client MAC address from an connected socket. usually you can get the IP-address via
$ip = \stream_socket_get_name($socket, true);
is there any chance to get the MAC at the same way? i know all about the facts that the real MAC is only available in a local network and also this hack:
exec("arp $ip");
but i want to avoid to execute an external tool.
volker.