diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-30 23:43:35 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-30 23:43:35 +0200 |
commit | e58c6e2e13030bea91f7cd41a62229b0f5927d51 (patch) | |
tree | e4920f7b45a5c0705342594983253186ecff03e6 | |
parent | b7d19cc400f14ccd64a1fedebe14022fe115029a (diff) | |
download | busybox-w32-e58c6e2e13030bea91f7cd41a62229b0f5927d51.tar.gz busybox-w32-e58c6e2e13030bea91f7cd41a62229b0f5927d51.tar.bz2 busybox-w32-e58c6e2e13030bea91f7cd41a62229b0f5927d51.zip |
dhcp: indicate IP network order in prototypes too
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/udhcp/common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index 75b787a80..ce81d1807 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h | |||
@@ -280,13 +280,13 @@ void udhcp_init_header(struct dhcp_packet *packet, char type) FAST_FUNC; | |||
280 | int udhcp_recv_kernel_packet(struct dhcp_packet *packet, int fd) FAST_FUNC; | 280 | int udhcp_recv_kernel_packet(struct dhcp_packet *packet, int fd) FAST_FUNC; |
281 | 281 | ||
282 | int udhcp_send_raw_packet(struct dhcp_packet *dhcp_pkt, | 282 | int udhcp_send_raw_packet(struct dhcp_packet *dhcp_pkt, |
283 | uint32_t source_ip, int source_port, | 283 | uint32_t source_nip, int source_port, |
284 | uint32_t dest_ip, int dest_port, const uint8_t *dest_arp, | 284 | uint32_t dest_nip, int dest_port, const uint8_t *dest_arp, |
285 | int ifindex) FAST_FUNC; | 285 | int ifindex) FAST_FUNC; |
286 | 286 | ||
287 | int udhcp_send_kernel_packet(struct dhcp_packet *dhcp_pkt, | 287 | int udhcp_send_kernel_packet(struct dhcp_packet *dhcp_pkt, |
288 | uint32_t source_ip, int source_port, | 288 | uint32_t source_nip, int source_port, |
289 | uint32_t dest_ip, int dest_port) FAST_FUNC; | 289 | uint32_t dest_nip, int dest_port) FAST_FUNC; |
290 | 290 | ||
291 | void udhcp_sp_setup(void) FAST_FUNC; | 291 | void udhcp_sp_setup(void) FAST_FUNC; |
292 | int udhcp_sp_fd_set(fd_set *rfds, int extra_fd) FAST_FUNC; | 292 | int udhcp_sp_fd_set(fd_set *rfds, int extra_fd) FAST_FUNC; |