2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 13:57:50 +00:00

Fix up PID file definitions

This commit is contained in:
Ted Lemon
1998-07-08 23:25:34 +00:00
parent b13b05da07
commit 2c51668a22

View File

@@ -68,9 +68,19 @@ extern int h_errno;
#define IPTOS_THROUGHPUT 0x08 #define IPTOS_THROUGHPUT 0x08
#define IPTOS_RELIABILITY 0x04 #define IPTOS_RELIABILITY 0x04
#endif #endif
#define _PATH_DHCPD_PID "/etc/dhcpd.pid"
#define _PATH_DHCLIENT_PID "/etc/dhclient.pid" #if !defined (_PATH_DHCPD_PID)
#define _PATH_DHCLIENT_PID "/etc/dhcrelay.pid" # define _PATH_DHCPD_PID "/etc/dhcpd.pid"
#endif
#if !defined (_PATH_DHCLIENT_PID)
# define _PATH_DHCLIENT_PID "/etc/dhclient.pid"
#endif
#if !defined (_PATH_DHCRELAY_PID)
# define _PATH_DHCRELAY_PID "/etc/dhcrelay.pid"
#endif
/* Stdarg definitions for ANSI-compliant C compilers. */ /* Stdarg definitions for ANSI-compliant C compilers. */
#import <stdarg.h> #import <stdarg.h>
#define VA_DOTDOTDOT ... #define VA_DOTDOTDOT ...