Skip to content

Commit

Permalink
fix 8K maximum upload size
Browse files Browse the repository at this point in the history
  • Loading branch information
CrispyPin committed Apr 12, 2024
1 parent 1f2c9b4 commit 43d61d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ struct Packet {
//----------------------------------------

int sentinel1 = 0xDEADBEEF;
char buf[8192]; // FIXME why 8k? are we setting the gdb max packet size correctly?
char buf[16384];
int sentinel2 = 0xF00DCAFE;
int size = 0;
bool error = false;
Expand Down

0 comments on commit 43d61d3

Please sign in to comment.