Remove setsockopt for SIGPIPE; disable SIGPIPE via signal() on non-WIN32

This commit is contained in:
Palana 2014-04-24 23:50:40 +02:00
parent 138bf4cc1e
commit 07ab8271b6
2 changed files with 6 additions and 2 deletions

View file

@ -31,6 +31,8 @@
#ifdef _WIN32
#include <fstream>
#include <windows.h>
#else
#include <signal.h>
#endif
using namespace std;
@ -217,6 +219,10 @@ struct NoFocusFrameStyle : QProxyStyle
int main(int argc, char *argv[])
{
#ifndef WIN32
signal(SIGPIPE, SIG_IGN);
#endif
int ret = -1;
QCoreApplication::addLibraryPath(".");
#ifdef _WIN32

View file

@ -1220,8 +1220,6 @@ RTMP_Connect0(RTMP *r, struct sockaddr * service)
}
}
setsockopt(r->m_sb.sb_socket, SOL_SOCKET, SO_NOSIGPIPE, (char *) &on, sizeof(on));
if(!r->m_bUseNagle)
setsockopt(r->m_sb.sb_socket, IPPROTO_TCP, TCP_NODELAY, (char *) &on, sizeof(on));