1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: Fix a DCMTK performance problem
Forwarded-Upstream: yes
Bug-Debian: https://bugs.debian.org/785400
Author: Sebastien Jodogne <s.jodogne@chu.ulg.ac.be>
Last-Update: Fri, 15 May 2015 16:39:01 UTC
--- a/dcmnet/libsrc/dul.cc
+++ b/dcmnet/libsrc/dul.cc
@@ -1916,7 +1916,7 @@
msg += OFStandard::getLastNetworkErrorCode().message();
return makeDcmnetCondition(DULC_TCPINITERROR, OF_error, msg.c_str());
}
- setTCPBufferLength(sock);
+ //setTCPBufferLength(sock);
/*
* Disable the so-called Nagle algorithm (if requested).
--- a/dcmnet/libsrc/dulfsm.cc
+++ b/dcmnet/libsrc/dulfsm.cc
@@ -2476,7 +2476,7 @@
msg += OFStandard::getLastNetworkErrorCode().message();
return makeDcmnetCondition(DULC_TCPINITERROR, OF_error, msg.c_str());
}
- setTCPBufferLength(s);
+ //setTCPBufferLength(s);
/*
* Disable the so-called Nagle algorithm (if requested).
|