mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-09-03 15:56:00 +00:00
Initialize omapi before trying to mess with interfaces.
This commit is contained in:
@@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
static char ocopyright[] =
|
static char ocopyright[] =
|
||||||
"$Id: dhcrelay.c,v 1.47 2000/10/12 09:05:04 mellon Exp $ Copyright (c) 1997-2000 Internet Software Consortium. All rights reserved.\n";
|
"$Id: dhcrelay.c,v 1.48 2000/12/29 06:47:46 mellon Exp $ Copyright (c) 1997-2000 Internet Software Consortium. All rights reserved.\n";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include "dhcpd.h"
|
#include "dhcpd.h"
|
||||||
@@ -135,6 +135,15 @@ int main (argc, argv, envp)
|
|||||||
setlogmask (LOG_UPTO (LOG_INFO));
|
setlogmask (LOG_UPTO (LOG_INFO));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Set up the OMAPI. */
|
||||||
|
status = omapi_init ();
|
||||||
|
if (status != ISC_R_SUCCESS)
|
||||||
|
log_fatal ("Can't initialize OMAPI: %s",
|
||||||
|
isc_result_totext (status));
|
||||||
|
|
||||||
|
/* Set up the OMAPI wrappers for the interface object. */
|
||||||
|
interface_setup ();
|
||||||
|
|
||||||
for (i = 1; i < argc; i++) {
|
for (i = 1; i < argc; i++) {
|
||||||
if (!strcmp (argv [i], "-p")) {
|
if (!strcmp (argv [i], "-p")) {
|
||||||
if (++i == argc)
|
if (++i == argc)
|
||||||
@@ -260,12 +269,6 @@ int main (argc, argv, envp)
|
|||||||
/* Get the current time... */
|
/* Get the current time... */
|
||||||
GET_TIME (&cur_time);
|
GET_TIME (&cur_time);
|
||||||
|
|
||||||
/* Set up the OMAPI. */
|
|
||||||
status = omapi_init ();
|
|
||||||
if (status != ISC_R_SUCCESS)
|
|
||||||
log_fatal ("Can't initialize OMAPI: %s",
|
|
||||||
isc_result_totext (status));
|
|
||||||
|
|
||||||
/* Discover all the network interfaces. */
|
/* Discover all the network interfaces. */
|
||||||
discover_interfaces (DISCOVER_RELAY);
|
discover_interfaces (DISCOVER_RELAY);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user