提交 07ab8271 编写于 作者: P Palana

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

上级 138bf4cc
......@@ -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
......
......@@ -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));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册