rt_names: stop allocating 5k in rwdata
[oweals/busybox.git] / networking / udhcp / options.h
index b0a649fef4309f3f2ba64cb89b3d59245b9d1797..588504e5d84c736f6d0ac9cceee9209425a3f36f 100644 (file)
@@ -3,8 +3,6 @@
 #ifndef _OPTIONS_H
 #define _OPTIONS_H
 
-#include "packet.h"
-
 #define TYPE_MASK      0x0F
 
 enum {
@@ -23,13 +21,13 @@ enum {
 #define OPTION_LIST    0x20 /* There can be a list of 1 or more of these */
 
 struct dhcp_option {
-       char name[10];
+       char name[12];
        char flags;
        uint8_t code;
 };
 
-extern struct dhcp_option dhcp_options[];
-extern int option_lengths[];
+extern const struct dhcp_option dhcp_options[];
+extern const unsigned char option_lengths[];
 
 uint8_t *get_option(struct dhcpMessage *packet, int code);
 int end_option(uint8_t *optionptr);