You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/quic/packet.hpp

16 lines
261 B
C++

#pragma once
#include "connection.hpp"
namespace llarp::quic
{
// Encapsulates a packet, i.e. the remote addr, packet data, plus metadata.
struct Packet
{
Path path;
bstring_view data;
ngtcp2_pkt_info info;
};
} // namespace llarp::quic