--- libvmime-0.7.1.orig/src/platforms/posix/posixSocket.cpp 2005-03-18 22:26:49.000000000 +0100 +++ libvmime-0.7.1.patched/src/platforms/posix/posixSocket.cpp 2009-03-27 10:51:06.405594549 +0100 @@ -24,6 +24,7 @@ #include #include #include +#include #include #include @@ -57,6 +58,8 @@ void posixSocket::connect(const vmime::string& address, const vmime::port_t port) { + int flag = 1; + // Close current connection, if any if (m_desc != -1) { @@ -92,6 +95,8 @@ if (m_desc == -1) throw vmime::exceptions::connection_error("Error while creating socket."); + ::setsockopt(m_desc, IPPROTO_TCP, TCP_NODELAY, (char *)&flag, sizeof(flag)); + // Start connection if (::connect(m_desc, reinterpret_cast (&addr), sizeof(addr)) == -1) {