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/include/llarp/iwp/sendqueue.hpp

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