mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Common: Namespace Network.h/.cpp
Necessary to avoid namespace clashes with IOS HLE's namespace name.
This commit is contained in:
parent
63011f1402
commit
f1542c8e5a
5 changed files with 26 additions and 20 deletions
|
@ -11,6 +11,8 @@
|
|||
#include "Common/StringUtil.h"
|
||||
#include "Common/Timer.h"
|
||||
|
||||
namespace Common
|
||||
{
|
||||
void GenerateMacAddress(const MACConsumer type, u8* mac)
|
||||
{
|
||||
memset(mac, 0, MAC_ADDRESS_SIZE);
|
||||
|
@ -20,10 +22,10 @@ void GenerateMacAddress(const MACConsumer type, u8* mac)
|
|||
|
||||
switch (type)
|
||||
{
|
||||
case BBA:
|
||||
case MACConsumer::BBA:
|
||||
memcpy(mac, oui_bba, 3);
|
||||
break;
|
||||
case IOS:
|
||||
case MACConsumer::IOS:
|
||||
memcpy(mac, oui_ios, 3);
|
||||
break;
|
||||
}
|
||||
|
@ -68,3 +70,4 @@ bool StringToMacAddress(const std::string& mac_string, u8* mac)
|
|||
}
|
||||
return success;
|
||||
}
|
||||
} // namespace Common
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue