mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
11 lines
313 B
C++
11 lines
313 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 |