diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-09-26 09:34:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-09-26 09:34:59 +0000 |
commit | f1980f67d3b005090a31b7465d219e8ca19c5736 (patch) | |
tree | 746646c47f2c42f4b94ced5cb89774406d3e8a24 /networking/udhcp/dhcpc.h | |
parent | cdb0b652ddd6bfbc4d83e21453b3b4137b887e18 (diff) | |
download | busybox-w32-f1980f67d3b005090a31b7465d219e8ca19c5736.tar.gz busybox-w32-f1980f67d3b005090a31b7465d219e8ca19c5736.tar.bz2 busybox-w32-f1980f67d3b005090a31b7465d219e8ca19c5736.zip |
dhcp: add FAST_FUNC as appropriate. -160 bytes.
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r-- | networking/udhcp/dhcpc.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h index 04e320cf0..6ca440071 100644 --- a/networking/udhcp/dhcpc.h +++ b/networking/udhcp/dhcpc.h | |||
@@ -37,17 +37,17 @@ struct client_config_t { | |||
37 | 37 | ||
38 | /*** clientpacket.h ***/ | 38 | /*** clientpacket.h ***/ |
39 | 39 | ||
40 | uint32_t random_xid(void); | 40 | uint32_t random_xid(void) FAST_FUNC; |
41 | int send_discover(uint32_t xid, uint32_t requested); | 41 | int send_discover(uint32_t xid, uint32_t requested) FAST_FUNC; |
42 | int send_selecting(uint32_t xid, uint32_t server, uint32_t requested); | 42 | int send_selecting(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; |
43 | #if ENABLE_FEATURE_UDHCPC_ARPING | 43 | #if ENABLE_FEATURE_UDHCPC_ARPING |
44 | int send_decline(uint32_t xid, uint32_t server, uint32_t requested); | 44 | int send_decline(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; |
45 | #endif | 45 | #endif |
46 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); | 46 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) FAST_FUNC; |
47 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); | 47 | int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) FAST_FUNC; |
48 | int send_release(uint32_t server, uint32_t ciaddr); | 48 | int send_release(uint32_t server, uint32_t ciaddr) FAST_FUNC; |
49 | 49 | ||
50 | int udhcp_recv_raw_packet(struct dhcpMessage *payload, int fd); | 50 | int udhcp_recv_raw_packet(struct dhcpMessage *payload, int fd) FAST_FUNC; |
51 | 51 | ||
52 | #if __GNUC_PREREQ(4,1) | 52 | #if __GNUC_PREREQ(4,1) |
53 | # pragma GCC visibility pop | 53 | # pragma GCC visibility pop |