Skip to content
This repository has been archived by the owner on Aug 1, 2020. It is now read-only.
/ readsb Public archive

various improvements for your consideration #26

Merged
merged 8 commits into from
Dec 7, 2019
Prev Previous commit
Next Next commit
increase network input read size to 8 kB
  • Loading branch information
wiedehopf committed Dec 6, 2019
commit 77e8a8e882e326b71383b7657f5cf451bc9d800e
4 changes: 2 additions & 2 deletions readsb.h
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ typedef enum {

#define MODES_NET_HEARTBEAT_INTERVAL 60000 // milliseconds

#define MODES_CLIENT_BUF_SIZE 1024
#define MODES_NET_SNDBUF_SIZE (1024*64)
#define MODES_CLIENT_BUF_SIZE (8*1024)
#define MODES_NET_SNDBUF_SIZE (64*1024)
#define MODES_NET_SNDBUF_MAX (7)

#define HISTORY_SIZE 120
Expand Down