mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
12 lines
300 B
C++
12 lines
300 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} /* , remote_rc{std::move(rc)} */
|
|
{}
|
|
|
|
} // namespace llarp::link
|