You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The line buffer size is set to 64 * 1024 * 1024 = 64MiB per default. Japi-Requests with more bytes will fail and cause the error
ERROR: Maximum line size of 67108864 bytes exceeded!
However, for some applications like transferring data to the server increased line sizes would be needed. The line size can be adjusted with redefining CREADLINE_MAX_LINE_SIZE to the desired value.
The text was updated successfully, but these errors were encountered:
However, the line size is depending on the user application and should be somehow adjustable when including the library (With a setter function, with config files, etc.) and not by changing the source software.
The line buffer size is set to 64 * 1024 * 1024 = 64MiB per default. Japi-Requests with more bytes will fail and cause the error
However, for some applications like transferring data to the server increased line sizes would be needed. The line size can be adjusted with redefining
CREADLINE_MAX_LINE_SIZE
to the desired value.The text was updated successfully, but these errors were encountered: