You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
311 B
C
18 lines
311 B
C
/*
|
|
*
|
|
* FreshTomato Firmware
|
|
*
|
|
*/
|
|
|
|
#ifndef _ipv6_shared_h_
|
|
#define _ipv6_shared_h_
|
|
|
|
#define TOMATO_DUID_MAX_LEN 64
|
|
#define TOMATO_DUID_GUI "/var/dhcp6c_duid_gui"
|
|
|
|
#define IPV6_MIN_LIFETIME 120
|
|
#define ONEMONTH_LIFETIME (30 * 24 * 60 * 60)
|
|
#define INFINITE_LIFETIME 0xffffffff
|
|
|
|
#endif /* _ipv6_shared_h_ */
|