summaryrefslogtreecommitdiff
path: root/net/kphone/patches/patch-ad
blob: b27192b0178b367d04bf074fde2258b009d3b37e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$NetBSD: patch-ad,v 1.3 2005/12/05 20:50:46 rillig Exp $

--- dissipate2/udpmessagesocket.cpp.orig	2005-04-18 14:04:40.000000000 +0100
+++ dissipate2/udpmessagesocket.cpp	2005-11-24 16:49:55.000000000 +0000
@@ -1,5 +1,7 @@
 #include <sys/types.h>
 #include <sys/socket.h>
+#include <netinet/in.h>
+#include <netinet/in_systm.h>
 #include <netinet/ip.h>
 #include <errno.h>
 #include <string.h>
@@ -57,7 +59,7 @@
 	tos=IPTOS_LOWDELAY;
 #endif
 	optlen=1;
-	if(setsockopt(socketfd,SOL_IP,IP_TOS,&tos,optlen) != 0){
+	if(setsockopt(socketfd,IPPROTO_IP,IP_TOS,&tos,optlen) != 0){
 		perror("UDPMessageSocket::SetTOS");
                 return -1 ;
 	}