Dev9ghzdrk: Take the first 3 bytes of the host MAC for the virtual one, should make it unique for people using xlink or multiple people playing the same game.

Hopefully this works anyway ;)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5805 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
refraction 2014-01-09 22:39:23 +00:00
parent 53c76b3780
commit cf8912eb2c
1 changed files with 5 additions and 0 deletions

View File

@ -70,6 +70,11 @@ int pcap_io_init(char *adapter)
GetMACAddress(adapter,&host_mac);
//Lets take the hosts first 3 bytes to bytes to make it unique
virtual_mac.bytes[0] = host_mac.bytes[0];
virtual_mac.bytes[1] = host_mac.bytes[1];
virtual_mac.bytes[2] = host_mac.bytes[2];
/* Open the adapter */
if ((adhandle= pcap_open_live(adapter, // name of the device
65536, // portion of the packet to capture.