Merge pull request #649 from chop0/master

xvc server: increase buffer size to 1MiB for improved network performance
This commit is contained in:
Gwenhael Goavec-Merou 2026-04-22 09:34:50 +02:00 committed by GitHub
commit 50e1ebe1c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;