aboutsummaryrefslogtreecommitdiff
path: root/networking/traceroute.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r--networking/traceroute.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c
index 8b6247482..df7122047 100644
--- a/networking/traceroute.c
+++ b/networking/traceroute.c
@@ -323,6 +323,14 @@
323# define IPPROTO_IP 0 323# define IPPROTO_IP 0
324#endif 324#endif
325 325
326/* Some operating systems, like GNU/Hurd, don't define SOL_RAW, but do have
327 * IPPROTO_RAW. Since the IPPROTO definitions are also valid to use for
328 * setsockopt (and take the same value as their corresponding SOL definitions,
329 * if they exist), we can just fall back on IPPROTO_RAW. */
330#ifndef SOL_RAW
331# define SOL_RAW IPPROTO_RAW
332#endif
333
326 334
327#define OPT_STRING \ 335#define OPT_STRING \
328 "FIlnrdvxt:i:m:p:q:s:w:z:f:" \ 336 "FIlnrdvxt:i:m:p:q:s:w:z:f:" \