Skip to content

Commit

Permalink
correct packet format size for simple
Browse files Browse the repository at this point in the history
  • Loading branch information
dentalfloss1 committed Feb 27, 2024
1 parent 2906a95 commit a7a5237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packet_capture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ BFstatus BFpacketcapture_create(BFpacketcapture* obj,
if( backend == BF_IO_DISK ) {
// Need to know how much to read at a time
int nchan = 1;
max_payload_size = 8192;
max_payload_size = 8200;
}
} else if( std::string(format).substr(0, 5) == std::string("chips") ) {
if( backend == BF_IO_DISK ) {
Expand Down

0 comments on commit a7a5237

Please sign in to comment.