mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
1a1f93c171
* use std::unique_ptr where bare pointers aren't absolutely required
12 lines
312 B
C++
12 lines
312 B
C++
#ifndef LLARP_IWP_SENDQUEUE_HPP
|
|
#define LLARP_IWP_SENDQUEUE_HPP
|
|
#include <llarp/codel.hpp>
|
|
#include <llarp/iwp/sendbuf.hpp>
|
|
|
|
typedef llarp::util::CoDelQueue<
|
|
sendbuf_t, sendbuf_t::GetTime, sendbuf_t::PutTime, sendbuf_t::Compare,
|
|
llarp::util::DummyMutex, llarp::util::DummyLock >
|
|
sendqueue_t;
|
|
|
|
#endif
|