diff options
Diffstat (limited to 'networking/udhcp/serverpacket.c')
-rw-r--r-- | networking/udhcp/serverpacket.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/serverpacket.c b/networking/udhcp/serverpacket.c index fc6249725..2fcf93033 100644 --- a/networking/udhcp/serverpacket.c +++ b/networking/udhcp/serverpacket.c | |||
@@ -97,7 +97,7 @@ static void add_bootp_options(struct dhcpMessage *packet) | |||
97 | 97 | ||
98 | 98 | ||
99 | /* send a DHCP OFFER to a DHCP DISCOVER */ | 99 | /* send a DHCP OFFER to a DHCP DISCOVER */ |
100 | int send_offer(struct dhcpMessage *oldpacket) | 100 | int FAST_FUNC send_offer(struct dhcpMessage *oldpacket) |
101 | { | 101 | { |
102 | struct dhcpMessage packet; | 102 | struct dhcpMessage packet; |
103 | struct dhcpOfferedAddr *lease = NULL; | 103 | struct dhcpOfferedAddr *lease = NULL; |
@@ -185,7 +185,7 @@ int send_offer(struct dhcpMessage *oldpacket) | |||
185 | } | 185 | } |
186 | 186 | ||
187 | 187 | ||
188 | int send_NAK(struct dhcpMessage *oldpacket) | 188 | int FAST_FUNC send_NAK(struct dhcpMessage *oldpacket) |
189 | { | 189 | { |
190 | struct dhcpMessage packet; | 190 | struct dhcpMessage packet; |
191 | 191 | ||
@@ -196,7 +196,7 @@ int send_NAK(struct dhcpMessage *oldpacket) | |||
196 | } | 196 | } |
197 | 197 | ||
198 | 198 | ||
199 | int send_ACK(struct dhcpMessage *oldpacket, uint32_t yiaddr) | 199 | int FAST_FUNC send_ACK(struct dhcpMessage *oldpacket, uint32_t yiaddr) |
200 | { | 200 | { |
201 | struct dhcpMessage packet; | 201 | struct dhcpMessage packet; |
202 | struct option_set *curr; | 202 | struct option_set *curr; |
@@ -244,7 +244,7 @@ int send_ACK(struct dhcpMessage *oldpacket, uint32_t yiaddr) | |||
244 | } | 244 | } |
245 | 245 | ||
246 | 246 | ||
247 | int send_inform(struct dhcpMessage *oldpacket) | 247 | int FAST_FUNC send_inform(struct dhcpMessage *oldpacket) |
248 | { | 248 | { |
249 | struct dhcpMessage packet; | 249 | struct dhcpMessage packet; |
250 | struct option_set *curr; | 250 | struct option_set *curr; |