최종완료보고 버전

This commit is contained in:
CodeTempla
2026-05-20 03:08:08 +09:00
commit 10d255ed51
548 changed files with 435582 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#ifndef _WIN32
#include <sys/types.h>
#endif
#include "Global.h"
size_t g_nMaxPathNameLength = 4096;
//size_t g_nSocketReceiveBlockSize = 8192;
size_t g_nSocketReceiveBlockSize = 32768;
//size_t g_nSocketSendingBlockSize = 1200; // for MTU
//size_t g_nSocketSendingBlockSize = 8192;
size_t g_nSocketSendingBlockSize = 32768;
//size_t g_nMaxHsHeaderSize = 16384; // in Apache default limit is 8KB, in IIS it's 16K.
size_t g_nMaxHsHeaderSize = 32768; // because of elsevier.com
unsigned long g_nTcpConnectTimeout = 15000;
//unsigned long g_nTcpConnectTimeout = 3000;
//unsigned long g_nTcpAutoReconnectTime = 15000;
unsigned long g_nTcpKeepAliveTime = 3000;