/usr/include/paristraceroute/use.h is in libparistraceroute-dev 0.93+git20160927-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #ifndef USE_H
// This header allows to enable or disable some functionnalities of libparistraceroute
// in order to get a smaller binary.
// Enable IPv4 and IPv6 support
#define USE_IPV4
#define USE_IPV6
// Enable bit-level fields and non-aligned fields management
#define USE_BITS
// Enable caches (for example, DNS caches)
#define USE_CACHE
// Enable scheduling of probes
#define USE_SCHEDULING
#endif
|