You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
497 B
18 lines
497 B
#pragma once |
|
|
|
namespace devilution { |
|
namespace net { |
|
|
|
bool zerotier_network_ready(); |
|
void zerotier_network_start(); |
|
void zerotier_network_stop(); |
|
|
|
// NOTE: We have patched our libzt to have the corresponding multicast |
|
// MAC hardcoded, since libzt is still missing the proper handling. |
|
const unsigned char dvl_multicast_addr[16] = { |
|
0xff, 0x0e, 0xa8, 0xa9, 0xb6, 0x11, 0x61, 0xce, |
|
0x04, 0x12, 0xfd, 0x73, 0x37, 0x86, 0x6f, 0xb7 |
|
}; |
|
|
|
} // namespace net |
|
} // namespace devilution
|
|
|