Import dhcpcd-8.1.1 with the following changes:
[dragonfly.git] / contrib / dhcpcd / src / defs.h
blobeaa105a00f0454c0719ae4e5e83ddf4d447bd8d3
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3 * dhcpcd - DHCP client daemon
4 * Copyright (c) 2006-2019 Roy Marples <roy@marples.name>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
28 #ifndef CONFIG_H
29 #define CONFIG_H
31 #define PACKAGE "dhcpcd"
32 #define VERSION "8.1.1"
34 #ifndef CONFIG
35 # define CONFIG SYSCONFDIR "/" PACKAGE ".conf"
36 #endif
37 #ifndef SCRIPT
38 # define SCRIPT LIBEXECDIR "/" PACKAGE "-run-hooks"
39 #endif
40 #ifndef DEVDIR
41 # define DEVDIR LIBDIR "/" PACKAGE "/dev"
42 #endif
43 #ifndef DUID
44 # define DUID DBDIR "/duid"
45 #endif
46 #ifndef SECRET
47 # define SECRET DBDIR "/secret"
48 #endif
49 #ifndef LEASEFILE
50 # define LEASEFILE DBDIR "/%s%s.lease"
51 #endif
52 #ifndef LEASEFILE6
53 # define LEASEFILE6 LEASEFILE "6"
54 #endif
55 #ifndef PIDFILE
56 # define PIDFILE RUNDIR "/" PACKAGE "%s%s%s.pid"
57 #endif
58 #ifndef CONTROLSOCKET
59 # define CONTROLSOCKET RUNDIR "/" PACKAGE "%s%s.sock"
60 #endif
61 #ifndef UNPRIVSOCKET
62 # define UNPRIVSOCKET RUNDIR "/" PACKAGE ".unpriv.sock"
63 #endif
64 #ifndef RDM_MONOFILE
65 # define RDM_MONOFILE DBDIR "/rdm_monotonic"
66 #endif
68 #ifndef NO_SIGNALS
69 # define USE_SIGNALS
70 #endif
71 #ifndef USE_SIGNALS
72 # ifndef THERE_IS_NO_FORK
73 # define THERE_IS_NO_FORK
74 # endif
75 #endif
77 #endif