Files
Martin Slachta f4174eb0c7 #1 - quicr module
2026-08-01 22:43:09 +02:00

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;
}