Don't enable dnsmasq IPSET functionality on 2.4 kernel
[tomato.git] / release / src / router / radvd / pathnames.h
blobe342ca2f0dc5e98be363e1a7eff12037487c1431
1 /*
3 * Authors:
4 * Pedro Roque <roque@di.fc.ul.pt>
5 * Lars Fenneberg <lf@elemental.net>
7 * This software is Copyright 1996,1997 by the above mentioned author(s),
8 * All Rights Reserved.
10 * The license which is distributed with this software in the file COPYRIGHT
11 * applies to this software. If your distribution is missing this file, you
12 * may request it from <pekkas@netcore.fi>.
16 #ifndef PATHNAMES_H
17 #define PATHNAMES_H
19 #ifndef PATH_RADVD_CONF
20 #define PATH_RADVD_CONF "/etc/radvd.conf"
21 #endif
23 #ifndef PATH_RADVD_PID
24 #define PATH_RADVD_PID "/var/run/radvd.pid"
25 #endif
27 #ifndef PATH_RADVD_LOG
28 #define PATH_RADVD_LOG "/var/log/radvd.log"
29 #endif
31 #define PATH_PROC_NET_IF_INET6 "/proc/net/if_inet6"
32 #define PATH_PROC_NET_IGMP6 "/proc/net/igmp6"
34 #ifdef __linux__
35 #define SYSCTL_IP6_FORWARDING CTL_NET, NET_IPV6, NET_IPV6_CONF, NET_PROTO_CONF_ALL, NET_IPV6_FORWARDING
36 #define PROC_SYS_IP6_FORWARDING "/proc/sys/net/ipv6/conf/all/forwarding"
37 #define PROC_SYS_IP6_LINKMTU "/proc/sys/net/ipv6/conf/%s/mtu"
38 #define PROC_SYS_IP6_CURHLIM "/proc/sys/net/ipv6/conf/%s/hop_limit"
39 #define PROC_SYS_IP6_BASEREACHTIME_MS "/proc/sys/net/ipv6/neigh/%s/base_reachable_time_ms"
40 #define PROC_SYS_IP6_BASEREACHTIME "/proc/sys/net/ipv6/neigh/%s/base_reachable_time"
41 #define PROC_SYS_IP6_RETRANSTIMER_MS "/proc/sys/net/ipv6/neigh/%s/retrans_time_ms"
42 #define PROC_SYS_IP6_RETRANSTIMER "/proc/sys/net/ipv6/neigh/%s/retrans_time"
43 #else /* BSD */
44 #define SYSCTL_IP6_FORWARDING CTL_NET, PF_INET6, IPPROTO_IPV6, IPV6CTL_FORWARDING
45 #endif
47 #endif