diff options
Diffstat (limited to 'libbb/udp_io.c')
-rw-r--r-- | libbb/udp_io.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/udp_io.c b/libbb/udp_io.c index c99e51643..b31f28416 100644 --- a/libbb/udp_io.c +++ b/libbb/udp_io.c | |||
@@ -13,7 +13,7 @@ | |||
13 | * This asks kernel to let us know dst addr/port of incoming packets | 13 | * This asks kernel to let us know dst addr/port of incoming packets |
14 | * We don't check for errors here. Not supported == won't be used | 14 | * We don't check for errors here. Not supported == won't be used |
15 | */ | 15 | */ |
16 | void | 16 | void FAST_FUNC |
17 | socket_want_pktinfo(int fd) | 17 | socket_want_pktinfo(int fd) |
18 | { | 18 | { |
19 | #ifdef IP_PKTINFO | 19 | #ifdef IP_PKTINFO |
@@ -25,7 +25,7 @@ socket_want_pktinfo(int fd) | |||
25 | } | 25 | } |
26 | 26 | ||
27 | 27 | ||
28 | ssize_t | 28 | ssize_t FAST_FUNC |
29 | send_to_from(int fd, void *buf, size_t len, int flags, | 29 | send_to_from(int fd, void *buf, size_t len, int flags, |
30 | const struct sockaddr *to, | 30 | const struct sockaddr *to, |
31 | const struct sockaddr *from, | 31 | const struct sockaddr *from, |
@@ -100,7 +100,7 @@ send_to_from(int fd, void *buf, size_t len, int flags, | |||
100 | * _Only_ IP/IPv6 address part of 'to' is _maybe_ modified. | 100 | * _Only_ IP/IPv6 address part of 'to' is _maybe_ modified. |
101 | * Typical usage is to preinit 'to' with "default" value | 101 | * Typical usage is to preinit 'to' with "default" value |
102 | * before calling recv_from_to(). */ | 102 | * before calling recv_from_to(). */ |
103 | ssize_t | 103 | ssize_t FAST_FUNC |
104 | recv_from_to(int fd, void *buf, size_t len, int flags, | 104 | recv_from_to(int fd, void *buf, size_t len, int flags, |
105 | struct sockaddr *from, struct sockaddr *to, | 105 | struct sockaddr *from, struct sockaddr *to, |
106 | socklen_t sa_size) | 106 | socklen_t sa_size) |