Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/include/inet_common.h

    r1765 r2725  
    77 *
    88 */
     9#ifndef INET_COMMON_H
     10#define INET_COMMON_H 1
    911
    10 #include "platform.h"
     12PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
    1113
    1214/* hostfirst!=0 If we expect this to be a hostname,
    1315   try hostname database first
    1416 */
    15 int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst);
     17int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst) FAST_FUNC;
    1618
    1719/* numeric: & 0x8000: "default" instead of "*",
     
    2022 */
    2123
    22 int INET6_resolve(const char *name, struct sockaddr_in6 *sin6);
     24int INET6_resolve(const char *name, struct sockaddr_in6 *sin6) FAST_FUNC;
    2325
    2426/* These return malloced string */
    25 char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask);
    26 char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric);
     27char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask) FAST_FUNC;
     28char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric) FAST_FUNC;
     29
     30POP_SAVED_FUNCTION_VISIBILITY
     31
     32#endif
Note: See TracChangeset for help on using the changeset viewer.