xvc server: increase buffer size to 1MiB for improved performance over slow connections

This commit is contained in:
alec 2026-04-19 14:47:35 -07:00
parent 212a025de8
commit 7854dbe479
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ XVC_server::XVC_server(int port, const cable_t & cable,
const std::string & firmware_path):_verbose(verbose > 1),
_jtag(NULL), _port(port), _sock(-1),
_is_stopped(false), _must_stop(false),
_buffer_size(2048), _state(Jtag::RUN_TEST_IDLE)
_buffer_size(1048576), _state(Jtag::RUN_TEST_IDLE)
{
(void)pin_conf;
(void)ip_adr;