increase TCP buffer size on windows to faster file transfer speed

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5.5@7107 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2014-02-11 18:03:23 +00:00
parent b171c0baaa
commit 8478ad870a

View File

@ -57,7 +57,7 @@ const int PQISSL_DNS_FLAG = 0x04;
const int PQISSL_UDP_FLAG = 0x02; const int PQISSL_UDP_FLAG = 0x02;
/* TCP buffer size for Windows systems */ /* TCP buffer size for Windows systems */
const int WINDOWS_TCP_BUFFER_SIZE = 128 * 1024; // 128 KB const int WINDOWS_TCP_BUFFER_SIZE = 512 * 1024; // 128 KB
/***************************** pqi Net SSL Interface ********************************* /***************************** pqi Net SSL Interface *********************************
* This provides the base SSL interface class, * This provides the base SSL interface class,