aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-09-26 09:34:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-09-26 09:34:59 +0000
commitf1980f67d3b005090a31b7465d219e8ca19c5736 (patch)
tree746646c47f2c42f4b94ced5cb89774406d3e8a24 /networking/udhcp/dhcpc.h
parentcdb0b652ddd6bfbc4d83e21453b3b4137b887e18 (diff)
downloadbusybox-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.h16
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
40uint32_t random_xid(void); 40uint32_t random_xid(void) FAST_FUNC;
41int send_discover(uint32_t xid, uint32_t requested); 41int send_discover(uint32_t xid, uint32_t requested) FAST_FUNC;
42int send_selecting(uint32_t xid, uint32_t server, uint32_t requested); 42int 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
44int send_decline(uint32_t xid, uint32_t server, uint32_t requested); 44int send_decline(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC;
45#endif 45#endif
46int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); 46int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) FAST_FUNC;
47int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); 47int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr) FAST_FUNC;
48int send_release(uint32_t server, uint32_t ciaddr); 48int send_release(uint32_t server, uint32_t ciaddr) FAST_FUNC;
49 49
50int udhcp_recv_raw_packet(struct dhcpMessage *payload, int fd); 50int 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