Add IPv6 link-local address to net_init and info response, use WaitGroup.Go
This commit is contained in:
@@ -47,8 +47,9 @@ struct ResponseInfo {
|
||||
static constexpr int8_t ext_id = 5;
|
||||
std::array<uint8_t, 8> board_id;
|
||||
std::array<uint8_t, 6> mac;
|
||||
auto as_tuple() const { return std::tie(board_id, mac); }
|
||||
auto as_tuple() { return std::tie(board_id, mac); }
|
||||
std::array<uint8_t, 16> link_local;
|
||||
auto as_tuple() const { return std::tie(board_id, mac, link_local); }
|
||||
auto as_tuple() { return std::tie(board_id, mac, link_local); }
|
||||
};
|
||||
|
||||
static constexpr uint8_t hash_key[8] = {};
|
||||
|
||||
Reference in New Issue
Block a user