You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
387 B
15 lines
387 B
Index: src/liboping.c |
|
--- src/liboping.c.orig 2010-11-17 09:54:43.000000000 +0100 |
|
+++ src/liboping.c 2010-12-19 18:57:57.000000000 +0100 |
|
@@ -1512,9 +1512,11 @@ |
|
int opt; |
|
|
|
/* Enable receiving the TOS field */ |
|
+#ifdef IP_RECVTOS |
|
opt = 1; |
|
setsockopt (ph->fd, IPPROTO_IP, IP_RECVTOS, |
|
&opt, sizeof (opt)); |
|
+#endif |
|
|
|
/* Enable receiving the TTL field */ |
|
opt = 1;
|
|
|