0
デフォルトの制限:ファイルサイズ制限を26214400バイトに設定しました。 ファイルサイズが25MBを超えると、エラーが発生します。 ウィンドウ内のClamdサービスの変更制限ファイルサイズはどのようになっていますか?
The maximum stream size of 26214400 bytes has been exceeded.
は、私が変更してみてください:
public ClamClient(string server, int port)
{
MaxChunkSize = 131072; //128k
MaxStreamSize = 209715200; //200mb ,- 26214400; //25mb
Server = server;
Port = port;
}
をしかし、それはエラーが発生したときにスキャンファイル:
Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host.
どのようにウィンドウのClamdサービスの変更の制限のファイルサイズは?
ありがとうございます。