blob: 3a3db7cc7f40064b98cb5244a5dbf532128f451b (
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.1 2004/07/21 21:49:02 scw Exp $
--- dissipate2/udpmessagesocket.cpp.orig 2004-03-04 11:22:57.000000000 +0000
+++ dissipate2/udpmessagesocket.cpp 2004-07-21 12:34:43.000000000 +0100
@@ -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>
@@ -52,7 +54,7 @@
socklen_t optlen;
tos=IPTOS_PREC_CRITIC_ECP;
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 0;
|