summaryrefslogtreecommitdiff
path: root/dhcpctl/dhcpctl.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1999-03-16 05:45:05 +0000
committerTed Lemon <source@isc.org>1999-03-16 05:45:05 +0000
commit3cd5e20af9f03539d15a3ec3c632dac25db0b3af (patch)
tree397fbe4bac862d52fe1c3961fa4fbe3dc26c612b /dhcpctl/dhcpctl.c
parent101021cf1e5a14f2ff1c864819baf1854fda0cfc (diff)
downloadisc-dhcp-3cd5e20af9f03539d15a3ec3c632dac25db0b3af.tar.gz
Wrong way.
Diffstat (limited to 'dhcpctl/dhcpctl.c')
-rw-r--r--dhcpctl/dhcpctl.c135
1 files changed, 0 insertions, 135 deletions
diff --git a/dhcpctl/dhcpctl.c b/dhcpctl/dhcpctl.c
deleted file mode 100644
index 8d0d14df..00000000
--- a/dhcpctl/dhcpctl.c
+++ /dev/null
@@ -1,135 +0,0 @@
-/* main.c
-
- DHCP Daemon controller*/
-
-/*
- * Copyright (c) 1998 The Internet Software Consortium.
- * All rights reserved.
- *
- * 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.
- * 3. Neither the name of The Internet Software Consortium nor the names
- * of its contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM 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 INTERNET SOFTWARE CONSORTIUM 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.
- *
- * This software has been written for the Internet Software Consortium
- * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
- * Enterprises. To learn more about the Internet Software Consortium,
- * see ``http://www.vix.com/isc''. To learn more about Vixie
- * Enterprises, see ``http://www.vix.com''.
- */
-
-#ifndef lint
-static char copyright[] =
-"$Id: dhcpctl.c,v 1.2 1999/02/24 17:56:49 mellon Exp $ Copyright (c) 1998 The Internet Software Consortium. All rights reserved.\n";
-#endif /* not lint */
-
-#include "dhcpd.h"
-
-int log_priority;
-int log_perror = 1;
-
-int dhcp_max_agent_option_packet_length;
-
-int main (argc, argv, envp)
- int argc;
- char **argv;
- char **envp;
-{
- struct sockaddr_un name;
- int dhcpctl_fd;
- FILE *dhcpctl;
- int status;
- char *buf;
- int len;
- char ibuf [1024];
- int arg;
-
-#ifdef SYSLOG_4_2
- openlog ("statmsg", LOG_NDELAY);
- log_priority = LOG_DAEMON;
-#else
- openlog ("statmsg", LOG_NDELAY, LOG_DAEMON);
-#endif
-
-#if !(defined (DEBUG) || defined (SYSLOG_4_2) || defined (__CYGWIN32__))
- setlogmask (LOG_UPTO (LOG_INFO));
-#endif
-
- dhcpctl_fd = socket (AF_UNIX, SOCK_STREAM, 0);
- if (dhcpctl_fd < 0)
- log_fatal ("unable to create dhcpctl socket: %m");
-
- /* XXX for now... */
- name.sun_family = PF_UNIX;
- strcpy (name.sun_path, "/var/run/dhcpctl");
-#if defined (HAVE_SA_LEN)
- name.sun_len =
-#endif
- len = ((sizeof name) - (sizeof name.sun_path) +
- strlen (name.sun_path));
-
- if (connect (dhcpctl_fd, (struct sockaddr *)&name, len) < 0)
- log_fatal ("can't connect to dhcpctl socket: %m");
-
-#if 0
- if ((arg = fcntl (dhcpctl_fd, F_GETFL, 0)) < 0)
- log_fatal ("Can't get flags on socket: %m");
- arg |= O_ASYNC;
- if (fcntl (dhcpctl_fd, F_SETFL, arg) < 0)
- log_fatal ("Can't set flags on socket: %m");
-#endif
-
- dhcpctl = fdopen (dhcpctl_fd, "r+");
- if (!dhcpctl)
- log_fatal ("Can't fdopen dhcpctl socket: %m");
- setlinebuf (dhcpctl);
-
- /* Read the response. */
- while (fgets (ibuf, sizeof ibuf, stdin)) {
- len = strlen (ibuf);
- if (!len)
- break;
- fputs (ibuf, dhcpctl);
- fflush (dhcpctl);
- if (ibuf [len - 1] != '\n')
- putc ('\n', dhcpctl);
-
- while (fgets (ibuf, sizeof ibuf, dhcpctl)) {
- if (ibuf [0] == '-') {
- fputs (&ibuf [1], stdout);
- } else {
- fputs (ibuf, stdout);
- break;
- }
- fflush (stdout);
- }
- }
-
- exit (0);
-}
-
-void cleanup ()
-{
-}