Skip to content

Commit

Permalink
Set CREADLINE_MAX_LINE_SIZE define to 1GiB to overwrite default max l…
Browse files Browse the repository at this point in the history
…ine size of 64MiB
  • Loading branch information
Michael-M-Baron committed Aug 6, 2024
1 parent 8d3a158 commit 28c7de9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/creadline.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
*/
#define CREADLINE_BLOCK_SIZE 1024

/* Define CREADLINE_MAX_LINE_SIZE to 1GiB. Will overwrite default CREADLINE_MAX_LINE_SIZE of 64 * 1024 * 1024 in
* lijapi creadline.c. Some application need more capacity to transfer data. */
#define CREADLINE_MAX_LINE_SIZE (1024*1024*1024)

#ifdef __cplusplus
extern "C" {
#endif
Expand Down

0 comments on commit 28c7de9

Please sign in to comment.