Skip to content

Commit

Permalink
Merge pull request aappleby#10 from CrispyPin/master
Browse files Browse the repository at this point in the history
fix 8K maximum upload size
  • Loading branch information
aappleby authored Apr 12, 2024
2 parents 1f2c9b4 + 43d61d3 commit 5206a4a
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 5206a4a

Please sign in to comment.