BeOS fix from Berend de Boer.

This commit is contained in:
johns 2002-08-17 12:16:05 +00:00
parent 0cb719e30a
commit 4d7f87c1a8
3 changed files with 4 additions and 1 deletions

View file

@ -843,6 +843,7 @@ Without any order:
<LI>Martin Renold
<LI>Martin Hajduch
<LI>Jeff Binder
<LI>Berend de Boer
</UL>
<P><EM>And to all I have forgot to write up!</EM><BR>
Please drop me an email, if I forgot you.

View file

@ -86,8 +86,8 @@ typedef struct _OLD_INTERFACE_INFO
# include <netdb.h>
# include <sys/socket.h>
# include <sys/ioctl.h>
# include <net/if.h>
# ifndef __BEOS__
# include <net/if.h>
# include <arpa/inet.h>
# endif
# define INVALID_SOCKET -1

View file

@ -467,12 +467,14 @@ global int NetConnectTCP(int sockfd,char* host,int port)
{
struct sockaddr_in sa;
unsigned long addr;
#ifndef __BEOS__
int opt;
opt = 1;
setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, (void*)&opt, sizeof(opt));
opt = 0;
setsockopt(sockfd, SOL_SOCKET, SO_LINGER, (void*)&opt, sizeof(opt));
#endif
addr=NetResolveHost(host);
if( addr==INADDR_NONE ) {