2006-11-28 04:23:22 +08:00
|
|
|
/*
|
2007-11-08 00:26:41 +08:00
|
|
|
* dhcpcd - DHCP client daemon
|
2008-01-08 17:51:23 +08:00
|
|
|
* Copyright 2006-2008 Roy Marples <roy@marples.name>
|
2008-01-16 23:59:14 +08:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2006-11-28 04:23:22 +08:00
|
|
|
*/
|
|
|
|
|
2007-05-11 00:08:49 +08:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2008-05-19 21:36:06 +08:00
|
|
|
#define PACKAGE "dhcpcd"
|
2008-06-20 14:56:31 +08:00
|
|
|
#define VERSION "4.0.0-beta7"
|
2008-05-19 21:36:06 +08:00
|
|
|
|
2007-05-11 00:08:49 +08:00
|
|
|
/* You can enable/disable various chunks of optional code here.
|
|
|
|
* You would only do this to try and shrink the end binary if dhcpcd
|
|
|
|
* was running on a low memory device */
|
2008-07-01 00:02:56 +08:00
|
|
|
|
|
|
|
/* Disable everything we possibly can. */
|
|
|
|
#ifdef MINIMAL
|
|
|
|
# ifndef DISABLE_ARP
|
|
|
|
# define DISABLE_ARP
|
|
|
|
# endif
|
|
|
|
# ifndef DISABLE_IPV4LL
|
|
|
|
# define DISABLE_IPV4LL
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enable ARP by default. */
|
2008-05-29 16:26:57 +08:00
|
|
|
#ifndef DISABLE_ARP
|
|
|
|
# define ENABLE_ARP
|
|
|
|
#endif
|
2007-05-11 00:08:49 +08:00
|
|
|
|
2007-07-18 19:26:59 +08:00
|
|
|
/* IPV4LL, aka ZeroConf, aka APIPA, aka RFC 3927.
|
|
|
|
* Needs ARP. */
|
2008-05-29 16:26:57 +08:00
|
|
|
#ifndef DISABLE_IPV4LL
|
|
|
|
# ifdef ENABLE_ARP
|
|
|
|
# define ENABLE_IPV4LL
|
|
|
|
# endif
|
|
|
|
#endif
|
2007-07-18 19:26:59 +08:00
|
|
|
|
2008-05-07 17:07:28 +08:00
|
|
|
/*
|
|
|
|
* By default we don't add a local link route if we got a routeable address.
|
|
|
|
* This is because dhcpcd can't really decide which interface should allow
|
|
|
|
* link local routing when we have more than one interface.
|
|
|
|
* Ideally the host network scripts should add the link local route for us.
|
|
|
|
* If not, you can define this to get dhcpcd to always add the link local route.
|
|
|
|
*/
|
|
|
|
// #define ENABLE_IPV4LL_ALWAYSROUTE
|
|
|
|
|
2008-04-12 00:14:55 +08:00
|
|
|
/* Some systems do not have a working fork. */
|
2008-01-16 22:32:35 +08:00
|
|
|
/* #define THERE_IS_NO_FORK */
|
2007-09-04 20:48:40 +08:00
|
|
|
|
2008-05-19 21:36:06 +08:00
|
|
|
/* Paths to things */
|
2008-04-14 21:09:44 +08:00
|
|
|
#ifndef SYSCONFDIR
|
2008-05-23 05:41:40 +08:00
|
|
|
# define SYSCONFDIR "/etc"
|
2008-04-14 21:09:44 +08:00
|
|
|
#endif
|
2008-05-20 20:23:29 +08:00
|
|
|
#ifndef LIBEXECDIR
|
|
|
|
# define LIBEXECDIR "/libexec"
|
|
|
|
#endif
|
2008-04-14 21:09:44 +08:00
|
|
|
#ifndef RUNDIR
|
|
|
|
# define RUNDIR "/var/run"
|
|
|
|
#endif
|
|
|
|
#ifndef DBDIR
|
|
|
|
# define DBDIR "/var/db"
|
2007-11-14 20:53:21 +08:00
|
|
|
#endif
|
2008-04-18 05:18:20 +08:00
|
|
|
|
2008-05-20 20:23:29 +08:00
|
|
|
#ifndef CONFIG
|
|
|
|
# define CONFIG SYSCONFDIR "/" PACKAGE ".conf"
|
2008-05-19 22:45:05 +08:00
|
|
|
#endif
|
|
|
|
#ifndef SCRIPT
|
2008-05-25 01:15:14 +08:00
|
|
|
# define SCRIPT LIBEXECDIR "/" PACKAGE "-run-hooks"
|
2008-05-19 22:45:05 +08:00
|
|
|
#endif
|
2008-05-20 20:23:29 +08:00
|
|
|
#ifndef DUID
|
|
|
|
# define DUID SYSCONFDIR "/" PACKAGE ".duid"
|
2008-05-19 22:45:05 +08:00
|
|
|
#endif
|
|
|
|
#ifndef LEASEFILE
|
|
|
|
# define LEASEFILE DBDIR "/" PACKAGE "-%s.lease"
|
|
|
|
#endif
|
|
|
|
#ifndef PIDFILE
|
2008-05-19 22:47:37 +08:00
|
|
|
# define PIDFILE RUNDIR "/" PACKAGE "-%s.pid"
|
2008-05-19 22:45:05 +08:00
|
|
|
#endif
|
2007-05-11 00:08:49 +08:00
|
|
|
|
2006-11-28 04:23:22 +08:00
|
|
|
#endif
|