MSG_NOSIGNAL is supported now. kill unneeded patch.

dcoppa@ ok.
This commit is contained in:
fgsch 2011-12-12 13:53:17 +00:00
parent 9875a4e08a
commit 3062daec06
2 changed files with 2 additions and 23 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.2 2011/09/16 09:48:10 espie Exp $
# $OpenBSD: Makefile,v 1.3 2011/12/12 13:53:17 fgsch Exp $
COMMENT= free software clone of Worms(R) game concept
DISTNAME= warmux-11.04.1
REVISION= 0
REVISION= 1
WRKDIST= ${WRKDIR}/warmux-11.04
CATEGORIES= games

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-tools_servers_index_server_net_data_cpp,v 1.1.1.1 2011/05/30 09:14:11 landry Exp $
--- tools/servers/index_server/net_data.cpp.orig Thu Apr 28 21:03:12 2011
+++ tools/servers/index_server/net_data.cpp Wed May 25 15:06:37 2011
@@ -248,7 +248,7 @@ bool NetData::SendInt(const int &nbr)
unsigned int u_nbr = *((unsigned int*)&nbr);
packet = htonl(u_nbr);
- if ( send(fd, &packet, sizeof(packet), MSG_NOSIGNAL) != sizeof(packet) ) {
+ if ( send(fd, &packet, sizeof(packet), 0) != sizeof(packet) ) {
PRINT_ERROR;
return false;
}
@@ -263,7 +263,7 @@ bool NetData::SendStr(const std::string &full_str)
if (!SendInt((int)full_str.size()))
return false;
- if ( send(fd, full_str.c_str(), full_str.size(), MSG_NOSIGNAL) != ssize_t(full_str.size()) ) {
+ if ( send(fd, full_str.c_str(), full_str.size(), 0) != ssize_t(full_str.size()) ) {
PRINT_ERROR;
return false;
}