14 lines
203 B
C++
14 lines
203 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace tw::msg {
|
|
|
|
/**
|
|
* Identifies a remote peer. Assigned when the peer connects or is accepted and
|
|
* stable until it disconnects.
|
|
*/
|
|
using PeerId = uint64_t;
|
|
|
|
}
|