lokinet/include/llarp/iwp/sendqueue.hpp

11 lines
313 B
C++
Raw Normal View History

#ifndef LLARP_IWP_SENDQUEUE_HPP
#define LLARP_IWP_SENDQUEUE_HPP
#include <llarp/codel.hpp>
2018-07-20 04:50:28 +00:00
#include <llarp/iwp/sendbuf.hpp>
2018-07-20 04:50:28 +00:00
typedef llarp::util::CoDelQueue<
sendbuf_t *, sendbuf_t::GetTime, sendbuf_t::PutTime, sendbuf_t::Compare,
llarp::util::DummyMutex, llarp::util::DummyLock >
sendqueue_t;
#endif