]> git.pld-linux.org Git - packages/dhcp.git/blobdiff - dhcp-options.patch
- updated to 4.4.3-P1
[packages/dhcp.git] / dhcp-options.patch
index cda71dfc1184ab84011dcfb22c0ad020f071ebb0..4b5696bafaa4be7dc54b8023d97933d724bc10c0 100644 (file)
@@ -1,45 +1,95 @@
-diff -up dhcp-4.0.0/common/conflex.c.options dhcp-4.0.0/common/conflex.c
---- dhcp-4.0.0/common/conflex.c.options        2007-12-29 11:13:51.000000000 -1000
-+++ dhcp-4.0.0/common/conflex.c        2007-12-29 11:13:51.000000000 -1000
-@@ -769,6 +769,8 @@ intern(char *atom, enum dhcp_token dfv) 
-                       return BALANCE;
-               if (!strcasecmp (atom + 1, "ound"))
-                       return BOUND;
-+              if (!strcasecmp (atom + 1, "ootp-broadcast-always"))
-+                      return BOOTP_BROADCAST_ALWAYS;
+From af18c830fe55f6be0b89997a36b611d981e3c25d Mon Sep 17 00:00:00 2001
+From: Pavel Zhukov <pzhukov@redhat.com>
+Date: Thu, 21 Feb 2019 10:19:47 +0100
+Subject: [PATCH 02/28] additional dhclient options
+
+---
+ client/clparse.c    |  10 +-
+ client/dhclient.8   |  27 +++++
+ client/dhclient.c   | 271 +++++++++++++++++++++++++++++++++++++++++++-
+ common/conflex.c    |   2 +
+ includes/dhcpd.h    |   3 +
+ includes/dhctoken.h |   3 +-
+ 6 files changed, 309 insertions(+), 7 deletions(-)
+
+diff --git a/client/clparse.c b/client/clparse.c
+index 74ca499..bb63825 100644
+--- a/client/clparse.c
++++ b/client/clparse.c
+@@ -192,6 +192,7 @@ isc_result_t read_client_conf ()
+       /* Requested lease time, used by DHCPv6 (DHCPv4 uses the option cache)
+        */
+       top_level_config.requested_lease = 7200;
++      top_level_config.bootp_broadcast_always = 0;
+       group_allocate (&top_level_config.on_receipt, MDL);
+       if (!top_level_config.on_receipt)
+@@ -397,7 +398,8 @@ void read_client_leases ()
+       interface-declaration |
+       LEASE client-lease-statement |
+       ALIAS client-lease-statement |
+-      KEY key-definition */
++      KEY key-definition |
++      BOOTP_BROADCAST_ALWAYS */
+ void parse_client_statement (cfile, ip, config)
+       struct parse *cfile;
+@@ -820,6 +822,12 @@ void parse_client_statement (cfile, ip, config)
+               parse_lease_id_format(cfile);
                break;
-             case 'c':
-               if (!strcasecmp (atom + 1, "ase"))
-diff -up dhcp-4.0.0/includes/dhcpd.h.options dhcp-4.0.0/includes/dhcpd.h
---- dhcp-4.0.0/includes/dhcpd.h.options        2007-12-29 11:13:51.000000000 -1000
-+++ dhcp-4.0.0/includes/dhcpd.h        2007-12-29 11:13:51.000000000 -1000
-@@ -1055,6 +1055,9 @@ struct client_config {
-       int do_forward_update;          /* If nonzero, and if we have the
-                                          information we need, update the
-                                          A record for the address we get. */
-+
-+      int bootp_broadcast_always;     /* If nonzero, always set the BOOTP_BROADCAST
-+                                         flag in requests */
- };
  
- /* Per-interface state used in the dhcp client... */
-diff -up dhcp-4.0.0/includes/dhctoken.h.options dhcp-4.0.0/includes/dhctoken.h
---- dhcp-4.0.0/includes/dhctoken.h.options     2007-10-31 09:13:33.000000000 -1000
-+++ dhcp-4.0.0/includes/dhctoken.h     2007-12-29 11:13:51.000000000 -1000
-@@ -345,7 +345,8 @@ enum dhcp_token {
-       WHITESPACE = 649,
-       TOKEN_ALSO = 650,
-       AFTER = 651,
--      CONFLICT_DONE = 660
-+      CONFLICT_DONE = 660,
-+      BOOTP_BROADCAST_ALWAYS = 652
- };
++            case BOOTP_BROADCAST_ALWAYS:
++              token = next_token(&val, (unsigned*)0, cfile);
++              config -> bootp_broadcast_always = 1;
++              parse_semi (cfile);
++              return;
++
  
- #define is_identifier(x)      ((x) >= FIRST_TOKEN &&  \
-diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
---- dhcp-4.0.0/client/dhclient.c.options       2007-11-30 11:51:42.000000000 -1000
-+++ dhcp-4.0.0/client/dhclient.c       2007-12-29 11:14:15.000000000 -1000
-@@ -37,6 +37,12 @@
+             default:
+               lose = 0;
+diff --git a/client/dhclient.8 b/client/dhclient.8
+index 861ff56..5029dac 100644
+--- a/client/dhclient.8
++++ b/client/dhclient.8
+@@ -135,6 +135,33 @@ dhclient - Dynamic Host Configuration Protocol Client
+ .B -w
+ ]
+ [
++.B -B
++]
++[
++.B -C
++.I dhcp-client-identifier
++]
++[
++.B -H
++.I host-name
++]
++[
++.B -F
++.I fqdn.fqdn
++]
++[
++.B -V
++.I vendor-class-identifier
++]
++[
++.B --request-options
++.I request-option-list
++]
++[
++.B --timeout
++.I timeout
++]
++[
+ .B --dad-wait-time
+ .I seconds
+ ]
+diff --git a/client/dhclient.c b/client/dhclient.c
+index 46dc3a7..6c1c09a 100644
+--- a/client/dhclient.c
++++ b/client/dhclient.c
+@@ -41,6 +41,12 @@
  #include <sys/wait.h>
  #include <limits.h>
  
@@ -52,22 +102,38 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
  TIME default_lease_time = 43200; /* 12 hours... */
  TIME max_lease_time = 86400; /* 24 hours... */
  
-@@ -75,6 +81,9 @@ int onetry=0;
- int quiet=1;
int nowait=0;
- char *mockup_relay = NULL;
+@@ -113,6 +119,10 @@ char *mockup_relay = NULL;
char *progname = NULL;
 +int bootp_broadcast_always = 0;
 +
-+extern u_int32_t default_requested_options[];
++extern struct option *default_requested_options[];
++
+ void run_stateless(int exit_mode, u_int16_t port);
  
- static void usage PROTO ((void));
+ static isc_result_t write_duid(struct data_string *duid);
+@@ -189,8 +199,12 @@ static const char use_v6command[] = "Command not used for DHCPv4: %s";
+ "                [-s server-addr] [-cf config-file]\n" \
+ "                [-df duid-file] [-lf lease-file]\n" \
+ "                [-pf pid-file] [--no-pid] [-e VAR=val]\n" \
+-"                [-sf script-file] [interface]*"
+-
++"                [-sf script-file] [interface]*\n" \
++"                [-C <dhcp-client-identifier>] [-B]\n" \
++"                [-H <host-name> | -F <fqdn.fqdn>] [--timeout <timeout>]\n" \
++"                [-V <vendor-class-identifier>]\n" \
++"                [--request-options <request option list>]"
++  
+ #define DHCLIENT_USAGEH "{--version|--help|-h}"
  
-@@ -100,6 +109,15 @@ main(int argc, char **argv) {
-       int no_dhclient_script = 0;
-       int local_family_set = 0;
-       char *s;
-+      char *dhcp_client_identifier_arg = NULL;
-+      char *dhcp_host_name_arg = NULL;
+ static void
+@@ -249,6 +263,16 @@ main(int argc, char **argv) {
+ #else
+       progname = argv[0];
+ #endif
++        char *dhcp_client_identifier_arg = NULL;
++        char *dhcp_host_name_arg = NULL;
 +      char *dhcp_fqdn_arg = NULL;
 +      char *dhcp_vendor_class_identifier_arg = NULL;
 +      char *dhclient_request_options = NULL;
@@ -75,35 +141,36 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +      int timeout_arg = 0;
 +      char *arg_conf = NULL;
 +      int arg_conf_len = 0;
++
        /* Initialize client globals. */
        memset(&default_duid, 0, sizeof(default_duid));
-@@ -224,6 +242,88 @@ main(int argc, char **argv) {
-               } else if (!strcmp (argv [i], "--version")) {
-                       log_info ("isc-dhclient-%s", PACKAGE_VERSION);
-                       exit (0);
-+              } else if (!strcmp (argv [i], "-I")) {
+@@ -564,6 +588,89 @@ main(int argc, char **argv) {
+                       std_dhcid = 1;
+               } else if (!strcmp(argv[i], "-v")) {
+                       quiet = 0;
++              } else if (!strcmp(argv[i], "-C")) {
 +                      if ((++i == argc) || (argv[i] == NULL) || (*(argv[i])=='\0')) {
-+                              usage ();
-+                              return EXIT_FAILURE;
++                              usage(use_noarg, argv[i-1]);
++                              exit(1);
 +                      }
 +
 +                      if (strlen(argv[i]) >= DHCP_MAX_OPTION_LEN) {
-+                              log_error("-I option dhcp-client-identifier string \"%s\" is too long - maximum length is: %d",  argv[i], DHCP_MAX_OPTION_LEN-1);
++                              log_error("-C option dhcp-client-identifier string \"%s\" is too long - maximum length is: %d", argv[i], DHCP_MAX_OPTION_LEN-1);
 +                              exit(1);
 +                      }
 +
 +                      dhcp_client_identifier_arg = argv[i];
-+              } else if (!strcmp (argv [i], "-B")) {
++              } else if (!strcmp(argv[i], "-B")) {
 +                      bootp_broadcast_always = 1;
-+              } else if (!strcmp (argv [i], "-H")) {
++              } else if (!strcmp(argv[i], "-H")) {
 +                      if ((++i == argc) || (argv[i] == NULL) || (*(argv[i])=='\0')) {
-+                              usage ();
-+                              return EXIT_FAILURE;
++                              usage(use_noarg, argv[i-1]);
++                              exit(1);
 +                      }
 +
 +                      if (strlen(argv[i]) >= DHCP_MAX_OPTION_LEN) {
-+                              log_error("-H option host-name string \"%s\" is too long - maximum length is: %d",  argv[i], DHCP_MAX_OPTION_LEN-1);
++                              log_error("-H option host-name string \"%s\" is too long - maximum length is: %d", argv[i], DHCP_MAX_OPTION_LEN-1);
 +                              exit(1);
 +                      }
 +
@@ -113,14 +180,14 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +                      }
 +
 +                      dhcp_host_name_arg = argv[i];
-+              } else if (!strcmp (argv [i], "-F")) {
++              } else if (!strcmp(argv[i], "-F")) {
 +                      if ((++i == argc) || (argv[i] == NULL) || (*(argv[i])=='\0')) {
-+                              usage ();
-+                              return EXIT_FAILURE;
++                              usage(use_noarg, argv[i-1]);
++                              exit(1);
 +                      }
 +
 +                      if (strlen(argv[i]) >= DHCP_MAX_OPTION_LEN) {
-+                              log_error("-F option fqdn.fqdn string \"%s\" is too long - maximum length is: %d",  argv[i], DHCP_MAX_OPTION_LEN-1);
++                              log_error("-F option fqdn.fqdn string \"%s\" is too long - maximum length is: %d", argv[i], DHCP_MAX_OPTION_LEN-1);
 +                              exit(1);
 +                      }
 +
@@ -135,48 +202,49 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +                      }
 +
 +                      dhcp_fqdn_arg = argv[i];
-+              } else if (!strcmp (argv [i], "-T")) {
++              } else if (!strcmp(argv[i], "--timeout")) {
 +                      if ((++i == argc) || (argv[i] == NULL) || (*(argv[i])=='\0')) {
-+                              usage ();
-+                              return EXIT_FAILURE;
++                              usage(use_noarg, argv[i-1]);
++                              exit(1);
 +                      }
 +
 +                      if ((timeout_arg = atoi(argv[i])) <= 0) {
-+                              log_error("-T timeout option must be > 0 - bad value: %s",argv[i]);
++                              log_error("timeout option must be > 0 - bad value: %s",argv[i]);
 +                              exit(1);
 +                      }
-+              } else if (!strcmp (argv [i], "-V")) {
++              } else if (!strcmp(argv[i], "-V")) {
 +                      if ((++i == argc) || (argv[i] == NULL) || (*(argv[i])=='\0')) {
-+                              usage ();
-+                              return EXIT_FAILURE;
++                              usage(use_noarg, argv[i-1]);
++                              exit(1);
 +                      }
 +
 +                      if (strlen(argv[i]) >= DHCP_MAX_OPTION_LEN) {
-+                              log_error("-V option vendor-class-identifier string \"%s\" is too long - maximum length is: %d",  argv[i], DHCP_MAX_OPTION_LEN-1);
++                              log_error("-V option vendor-class-identifier string \"%s\" is too long - maximum length is: %d", argv[i], DHCP_MAX_OPTION_LEN-1);
 +                              exit(1);
 +                      }
 +
 +                      dhcp_vendor_class_identifier_arg = argv[i];
-+              } else if (!strcmp (argv [i], "-R")) {
++              } else if (!strcmp(argv[i], "--request-options")) {
 +                      if ((++i == argc) || (argv[i] == NULL) || (*(argv[i])=='\0')) {
-+                              usage ();
-+                              return EXIT_FAILURE;
++                              usage(use_noarg, argv[i-1]);
++                              exit(1);
 +                      }
 +
-+                      dhclient_request_options=argv[i];
-               } else if (argv [i][0] == '-') {
-                   usage ();
-               } else {
-@@ -370,6 +470,166 @@ main(int argc, char **argv) {
++                      dhclient_request_options = argv[i];
++
+               } else if (argv[i][0] == '-') {
+                       usage("Unknown command: %s", argv[i]);
+               } else if (interfaces_requested < 0) {
+@@ -760,6 +867,156 @@ main(int argc, char **argv) {
        /* Parse the dhclient.conf file. */
-       read_client_conf ();
+       read_client_conf();
  
 +      /* Parse any extra command line configuration arguments: */
 +      if ((dhcp_client_identifier_arg != NULL) && (*dhcp_client_identifier_arg != '\0')) {
 +              arg_conf_len = asprintf(&arg_conf, "send dhcp-client-identifier \"%s\";", dhcp_client_identifier_arg);
 +
 +              if ((arg_conf == 0) || (arg_conf_len <= 0))
-+                      log_fatal("Unable to send -I option dhcp-client-identifier");
++                      log_fatal("Unable to send -C option dhcp-client-identifier");
 +      }
 +
 +      if ((dhcp_host_name_arg != NULL) && (*dhcp_host_name_arg != '\0')) {
@@ -188,7 +256,7 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +              } else {
 +                      char *last_arg_conf = arg_conf;
 +                      arg_conf = NULL;
-+                      arg_conf_len = asprintf( &arg_conf, "%s\nsend host-name \"%s\";", last_arg_conf, dhcp_host_name_arg);
++                      arg_conf_len = asprintf(&arg_conf, "%s\nsend host-name \"%s\";", last_arg_conf, dhcp_host_name_arg);
 +
 +                      if ((arg_conf == 0) || (arg_conf_len <= 0))
 +                              log_fatal("Unable to send -H option host-name");
@@ -206,7 +274,7 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +              } else {
 +                      char *last_arg_conf = arg_conf;
 +                      arg_conf = NULL;
-+                      arg_conf_len = asprintf( &arg_conf, "%s\nsend fqdn.fqdn \"%s\";", last_arg_conf, dhcp_fqdn_arg);
++                      arg_conf_len = asprintf(&arg_conf, "%s\nsend fqdn.fqdn \"%s\";", last_arg_conf, dhcp_fqdn_arg);
 +
 +                      if ((arg_conf == 0)  || (arg_conf_len <= 0))
 +                              log_fatal("Unable to send -F option fqdn.fqdn");
@@ -220,14 +288,14 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +                      arg_conf_len = asprintf(&arg_conf,  "timeout %d;", timeout_arg);
 +
 +                      if ((arg_conf == 0) || (arg_conf_len <= 0))
-+                              log_fatal("Unable to process -T timeout argument");
++                              log_fatal("Unable to process --timeout timeout argument");
 +              } else {
 +                      char *last_arg_conf = arg_conf;
 +                      arg_conf = NULL;
-+                      arg_conf_len = asprintf( &arg_conf, "%s\ntimeout %d;", last_arg_conf, timeout_arg);
++                      arg_conf_len = asprintf(&arg_conf, "%s\ntimeout %d;", last_arg_conf, timeout_arg);
 +
 +                      if ((arg_conf == 0) || (arg_conf_len == 0))
-+                              log_fatal("Unable to process -T timeout argument");
++                              log_fatal("Unable to process --timeout timeout argument");
 +
 +                      free(last_arg_conf);
 +              }
@@ -256,14 +324,14 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +                      arg_conf_len = asprintf(&arg_conf,  "request %s;", dhclient_request_options);
 +
 +                      if ((arg_conf == 0) || (arg_conf_len <= 0))
-+                              log_fatal("Unable to parse -R <request options list> argument");
++                              log_fatal("Unable to parse --request-options <request options list> argument");
 +              } else {
 +                      char *last_arg_conf = arg_conf;
 +                      arg_conf = NULL;
 +                      arg_conf_len = asprintf(&arg_conf, "%s\nrequest %s;", last_arg_conf, dhclient_request_options);
 +
 +                      if ((arg_conf == 0)  || (arg_conf_len <= 0))
-+                              log_fatal("Unable to parse -R <request options list> argument");
++                              log_fatal("Unable to parse --request-options <request options list> argument");
 +
 +                      free(last_arg_conf);
 +              }
@@ -273,7 +341,7 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +              if (arg_conf_len == 0)
 +                      if ((arg_conf_len = strlen(arg_conf)) == 0)
 +                              /* huh ? cannot happen ! */
-+                              log_fatal("Unable to process -I/-H/-F/-T/-V/-R configuration arguments");
++                              log_fatal("Unable to process -C/-H/-F/--timeout/-V/--request-options configuration arguments");
 +
 +              /* parse the extra dhclient.conf configuration arguments
 +               * into top level config: */
@@ -281,46 +349,36 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +              const char *val = NULL;
 +              int token;
 +
-+              status = new_parse (&cfile, -1, arg_conf, arg_conf_len, "extra dhclient -I/-H/-F/-T/-V/-R configuration arguments", 0);
++              status = new_parse(&cfile, -1, arg_conf, arg_conf_len, "extra dhclient -C/-H/-F/--timeout/-V/--request-options configuration arguments", 0);
 +
 +              if ((status != ISC_R_SUCCESS) || (cfile -> warnings_occurred))
-+                      log_fatal("Cannot parse -I/-H/-F/-T/-V/-R configuration arguments !");
++                      log_fatal("Cannot parse -C/-H/-F/--timeout/-V/--request-options configuration arguments !");
 +              /* more detailed parse failures will be logged */
 +
 +              do {
-+                      token = peek_token (&val, (unsigned *)0, cfile);
++                      token = peek_token(&val, (unsigned *)0, cfile);
 +                      if (token == END_OF_FILE)
 +                              break;
 +
-+                      parse_client_statement (cfile, (struct interface_info *)0, &top_level_config);
++                      parse_client_statement(cfile, (struct interface_info *)0, &top_level_config);
 +              } while (1);
 +
 +              if (cfile -> warnings_occurred)
-+                      log_fatal ("Cannot parse -I/-H/-F/-T/-V/-R configuration arguments !");
-+              end_parse (&cfile);
++                      log_fatal("Cannot parse -C/-H/-F/--timeout/-V/--request-options configuration arguments !");
++              end_parse(&cfile);
 +
 +              if (timeout_arg) {
 +                      /* we just set the toplevel timeout, but per-client
-+                       * timeouts may still be at defaults. Also, it makes no
-+                       * sense having the reboot_timeout or backoff_cutoff
-+                       * greater than the timeout:
++                       * timeouts may still be at defaults.
 +                       */
-+                      if ((top_level_config.backoff_cutoff == 15) && (top_level_config.backoff_cutoff > (timeout_arg / 2)))
-+                              top_level_config.backoff_cutoff = (((unsigned long)(timeout_arg / 2)) == 0) ? timeout_arg : (unsigned long)(timeout_arg / 2);
-+
-+                      for (ip = interfaces; ip; ip = ip -> next) {
++                      for (ip=interfaces; ip; ip = ip->next) {
 +                              if (ip->client->config->timeout == 60)
 +                                      ip->client->config->timeout = timeout_arg;
-+
-+                              if ((ip->client->config->reboot_timeout == 10) && (ip->client->config->reboot_timeout > ip->client->config->timeout))
-+                                      ip->client->config->reboot_timeout = ip->client->config->timeout;
-+                              if ((ip->client->config->backoff_cutoff == 15) && (ip->client->config->backoff_cutoff > top_level_config.backoff_cutoff))
-+                                      ip->client->config->backoff_cutoff = top_level_config.backoff_cutoff;
 +                      }
 +              }
 +
 +              if ((dhclient_request_options != 0) && (top_level_config.requested_options != default_requested_options)) {
-+                      for (ip = interfaces; ip; ip = ip -> next) {
++                      for (ip=interfaces; ip; ip = ip->next) {
 +                              if (ip->client->config->requested_options == default_requested_options)
 +                                      ip->client->config->requested_options = top_level_config.requested_options;
 +                      }
@@ -332,9 +390,9 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
 +      }
 +
        /* Parse the lease database. */
-       read_client_leases ();
+       read_client_leases();
  
-@@ -2105,7 +2365,8 @@ void make_discover (client, lease)
+@@ -3472,7 +3729,8 @@ void make_discover (client, lease)
        client -> packet.xid = random ();
        client -> packet.secs = 0; /* filled in by send_discover. */
  
@@ -344,7 +402,7 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
                client -> packet.flags = 0;
        else
                client -> packet.flags = htons (BOOTP_BROADCAST);
-@@ -2189,7 +2450,9 @@ void make_request (client, lease)
+@@ -3557,7 +3815,9 @@ void make_request (client, lease)
        } else {
                memset (&client -> packet.ciaddr, 0,
                        sizeof client -> packet.ciaddr);
@@ -355,7 +413,7 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
                        client -> packet.flags = 0;
                else
                        client -> packet.flags = htons (BOOTP_BROADCAST);
-@@ -2248,7 +2511,8 @@ void make_decline (client, lease)
+@@ -3620,7 +3880,8 @@ void make_decline (client, lease)
        client -> packet.hops = 0;
        client -> packet.xid = client -> xid;
        client -> packet.secs = 0; /* Filled in by send_request. */
@@ -365,37 +423,47 @@ diff -up dhcp-4.0.0/client/dhclient.c.options dhcp-4.0.0/client/dhclient.c
                client -> packet.flags = 0;
        else
                client -> packet.flags = htons (BOOTP_BROADCAST);
-diff -up dhcp-4.0.0/client/clparse.c.options dhcp-4.0.0/client/clparse.c
---- dhcp-4.0.0/client/clparse.c.options        2007-12-08 09:36:00.000000000 -1000
-+++ dhcp-4.0.0/client/clparse.c        2007-12-29 11:13:51.000000000 -1000
-@@ -132,6 +132,7 @@ isc_result_t read_client_conf ()
-       /* Requested lease time, used by DHCPv6 (DHCPv4 uses the option cache)
-        */
-       top_level_config.requested_lease = 7200;
-+      top_level_config.bootp_broadcast_always = 0;
+diff --git a/common/conflex.c b/common/conflex.c
+index 8b01dfb..1fa2be3 100644
+--- a/common/conflex.c
++++ b/common/conflex.c
+@@ -832,6 +832,8 @@ intern(char *atom, enum dhcp_token dfv) {
+               if (!strcasecmp(atom+1, "ig-endian")) {
+                       return TOKEN_BIG_ENDIAN;
+               }
++              if (!strcasecmp (atom + 1, "ootp-broadcast-always"))
++                      return BOOTP_BROADCAST_ALWAYS;
+               break;
+             case 'c':
+               if (!strcasecmp(atom + 1, "ase"))
+diff --git a/includes/dhcpd.h b/includes/dhcpd.h
+index f68b228..3b2e2ca 100644
+--- a/includes/dhcpd.h
++++ b/includes/dhcpd.h
+@@ -1284,6 +1284,9 @@ struct client_config {
  
-       group_allocate (&top_level_config.on_receipt, MDL);
-       if (!top_level_config.on_receipt)
-@@ -295,7 +296,8 @@ void read_client_leases ()
-       interface-declaration |
-       LEASE client-lease-statement |
-       ALIAS client-lease-statement |
--      KEY key-definition */
-+      KEY key-definition |
-+      BOOTP_BROADCAST_ALWAYS */
+       int lease_id_format;            /* format for IDs in lease file,
+                                          TOKEN_OCTAL or TOKEN_HEX */
++
++      int bootp_broadcast_always;     /* If nonzero, always set the BOOTP_BROADCAST
++                                         flag in requests */
+ };
  
- void parse_client_statement (cfile, ip, config)
-       struct parse *cfile;
-@@ -685,6 +687,12 @@ void parse_client_statement (cfile, ip, 
-               parse_reject_statement (cfile, config);
-               return;
+ /* Per-interface state used in the dhcp client... */
+diff --git a/includes/dhctoken.h b/includes/dhctoken.h
+index e6d125f..6daa422 100644
+--- a/includes/dhctoken.h
++++ b/includes/dhctoken.h
+@@ -377,7 +377,8 @@ enum dhcp_token {
+       TOKEN_HEX = 677,
+       TOKEN_OCTAL = 678,
+       KEY_ALGORITHM = 679,
+-      DISCONNECT = 680
++      BOOTP_BROADCAST_ALWAYS = 680,
++      DISCONNECT = 681
+ };
  
-+            case BOOTP_BROADCAST_ALWAYS:
-+              token = next_token(&val, (unsigned*)0, cfile);
-+              config -> bootp_broadcast_always = 1;
-+              parse_semi (cfile);
-+              return;
-+
-             default:
-               lose = 0;
-               stmt = (struct executable_statement *)0;
+ #define is_identifier(x)      ((x) >= FIRST_TOKEN &&  \
+-- 
+2.35.1
+
This page took 0.086483 seconds and 4 git commands to generate.