From 94a923b00a30265a92ee5b24b15b1f68882e5a7e Mon Sep 17 00:00:00 2001 From: "Nicholas J. Kain" Date: Wed, 12 Mar 2014 16:24:02 -0400 Subject: [PATCH] Clean up and centralize stray external prototypes into headers. --- ndhc/ifchange.c | 4 +--- ndhc/ifchd-parse.rl | 3 --- ndhc/ifchd.c | 7 +------ ndhc/ifchd.h | 2 ++ ndhc/ndhc.c | 2 +- ndhc/ndhc.h | 40 ++++++++++++++++++++++++++++++++++++++++ 6 files changed, 45 insertions(+), 13 deletions(-) create mode 100644 ndhc/ndhc.h diff --git a/ndhc/ifchange.c b/ndhc/ifchange.c index 78a0dd1..f7768fd 100644 --- a/ndhc/ifchange.c +++ b/ndhc/ifchange.c @@ -35,6 +35,7 @@ #include #include "options.h" +#include "ndhc.h" #include "config.h" #include "dhcp.h" #include "options.h" @@ -45,9 +46,6 @@ #include "ifchange.h" #include "ifch_proto.h" -// XXX: Move to header -extern int pToIfchW; - static int cfg_deconfig; // Set if the interface has already been deconfigured. static struct dhcpmsg cfg_packet; // Copy of the current configuration packet. diff --git a/ndhc/ifchd-parse.rl b/ndhc/ifchd-parse.rl index 99074c5..5d52012 100644 --- a/ndhc/ifchd-parse.rl +++ b/ndhc/ifchd-parse.rl @@ -37,9 +37,6 @@ #include "strl.h" #include "ifset.h" -// XXX: Move to header -extern struct ifchd_client cl; - %%{ machine ipv4set_parser; diff --git a/ndhc/ifchd.c b/ndhc/ifchd.c index 014c1e5..e4ac82e 100644 --- a/ndhc/ifchd.c +++ b/ndhc/ifchd.c @@ -46,6 +46,7 @@ #include #include "ifchd.h" +#include "ndhc.h" #include "log.h" #include "chroot.h" #include "pidfile.h" @@ -74,12 +75,6 @@ char pidfile_ifch[MAX_PATH_LENGTH] = PID_FILE_IFCH_DEFAULT; uid_t ifch_uid = 0; gid_t ifch_gid = 0; -// XXX: Move to header -extern int pToIfchR; -extern int pToNdhcW; -extern char chroot_dir[MAX_PATH_LENGTH]; -extern char resolv_conf_d[MAX_PATH_LENGTH]; - static void writeordie(int fd, const char *buf, int len) { if (safe_write(fd, buf, len) == -1) diff --git a/ndhc/ifchd.h b/ndhc/ifchd.h index 522fa99..886cd46 100644 --- a/ndhc/ifchd.h +++ b/ndhc/ifchd.h @@ -29,6 +29,8 @@ struct ifchd_client { char domains[MAX_BUF]; }; +extern struct ifchd_client cl; + extern int allow_hostname; extern char pidfile_ifch[MAX_PATH_LENGTH]; extern uid_t ifch_uid; diff --git a/ndhc/ndhc.c b/ndhc/ndhc.c index a3efd61..d0929b7 100644 --- a/ndhc/ndhc.c +++ b/ndhc/ndhc.c @@ -1,6 +1,6 @@ /* ndhc.c - DHCP client * - * Copyright (c) 2004-2013 Nicholas J. Kain + * Copyright (c) 2004-2014 Nicholas J. Kain * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/ndhc/ndhc.h b/ndhc/ndhc.h new file mode 100644 index 0000000..e319500 --- /dev/null +++ b/ndhc/ndhc.h @@ -0,0 +1,40 @@ +/* ndhc.h - DHCP client + * + * Copyright (c) 2014 Nicholas J. Kain + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * - Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * - 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 COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER 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. + */ +#ifndef NJK_NDHC_NDHC_H_ +#define NJK_NDHC_NDHC_H_ + +#include "defines.h" + +extern int pToIfchR; +extern int pToIfchW; +extern int pToNdhcR; +extern int pToNdhcW; +extern char chroot_dir[MAX_PATH_LENGTH]; +extern char resolv_conf_d[MAX_PATH_LENGTH]; + +#endif /* NJK_NDHC_NDHC_H_ */