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/link/connection.cpp

12 lines
296 B
C++

#include "connection.hpp"
namespace llarp::link
{
Connection::Connection(
const std::shared_ptr<oxen::quic::connection_interface>& c,
std::shared_ptr<oxen::quic::BTRequestStream>& s)
: conn{c}, control_stream{s}, inbound{conn->is_inbound()}
{}
} // namespace llarp::link