diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-03 15:47:50 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-03 15:47:50 +0000 |
commit | 42b3dea9bfb8ac595c71089ee23012f44dd43eb2 (patch) | |
tree | b7b86d06a574d2af72bc79536d399905b5619959 /networking/udhcp/common.h | |
parent | 54e19da86d5496ec5f5787b85a2b6342be1d63d4 (diff) | |
download | busybox-w32-42b3dea9bfb8ac595c71089ee23012f44dd43eb2.tar.gz busybox-w32-42b3dea9bfb8ac595c71089ee23012f44dd43eb2.tar.bz2 busybox-w32-42b3dea9bfb8ac595c71089ee23012f44dd43eb2.zip |
udhcp: many small fixes:
* arpping(): smaller and even probably fixed
* lots of variables/params converted: ulong -> uint32_t
* uptime() nuked in favor of monotonic_sec()
* udhcp_get_packet(): only one "bad vendor", simplify
function old new delta
reservedIp 36 35 -1
udhcpc_main 2462 2460 -2
addStaticLease 64 62 -2
static.broken_vendors 16 - -16
uptime 19 - -19
udhcpd_main 1273 1238 -35
udhcp_get_packet 223 184 -39
.rodata 144162 144106 -56
arpping 690 609 -81
------------------------------------------------------------------------------
(add/remove: 0/2 grow/shrink: 0/7 up/down: 0/-251) Total: -251 bytes
text data bss dec hex filename
734241 3028 14400 751669 b7835 busybox_old
734005 3028 14400 751433 b7749 busybox_unstripped
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r-- | networking/udhcp/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index 006d580d3..588750462 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h | |||
@@ -80,14 +80,14 @@ void udhcp_run_script(struct dhcpMessage *packet, const char *name); | |||
80 | /* from dhcpd.h */ | 80 | /* from dhcpd.h */ |
81 | #define server_config udhcp_server_config | 81 | #define server_config udhcp_server_config |
82 | 82 | ||
83 | long uptime(void); | ||
84 | void udhcp_sp_setup(void); | 83 | void udhcp_sp_setup(void); |
85 | int udhcp_sp_fd_set(fd_set *rfds, int extra_fd); | 84 | int udhcp_sp_fd_set(fd_set *rfds, int extra_fd); |
86 | int udhcp_sp_read(fd_set *rfds); | 85 | int udhcp_sp_read(fd_set *rfds); |
87 | int raw_socket(int ifindex); | 86 | int raw_socket(int ifindex); |
88 | int read_interface(const char *interface, int *ifindex, uint32_t *addr, uint8_t *arp); | 87 | int read_interface(const char *interface, int *ifindex, uint32_t *addr, uint8_t *arp); |
89 | int listen_socket(uint32_t ip, int port, const char *inf); | 88 | int listen_socket(uint32_t ip, int port, const char *inf); |
90 | int arpping(uint32_t yiaddr, uint32_t ip, uint8_t *arp, char *interface); | 89 | /* Returns 1 if no reply received */ |
90 | int arpping(uint32_t test_ip, uint32_t from_ip, uint8_t *from_mac, const char *interface); | ||
91 | 91 | ||
92 | #if ENABLE_FEATURE_UDHCP_DEBUG | 92 | #if ENABLE_FEATURE_UDHCP_DEBUG |
93 | # define DEBUG(str, args...) bb_info_msg(str, ## args) | 93 | # define DEBUG(str, args...) bb_info_msg(str, ## args) |