pcap_base: increase PDU queue length

some systems with slower HDD seem to have issues
writing the PDUs to disk. increasing length to see if that helps.
master
Andre Puschmann 4 years ago
parent a245039cf3
commit d9a5d3f95a

@ -96,7 +96,7 @@ protected:
std::mutex mutex; std::mutex mutex;
srslog::basic_logger& logger; srslog::basic_logger& logger;
bool running = false; bool running = false;
static_blocking_queue<pcap_pdu_t, 512> queue; static_blocking_queue<pcap_pdu_t, 1024> queue;
uint16_t ue_id = 0; uint16_t ue_id = 0;
private: private:

Loading…
Cancel
Save