Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/ftutil.h

    r2e8523b r5ebff60  
    2626#endif
    2727
     28/* Some ifdefs for ulibc and apparently also BSD (Thanks to Whoopie) */
     29#ifndef HOST_NAME_MAX
     30#include <sys/param.h>
     31#ifdef MAXHOSTNAMELEN
     32#define HOST_NAME_MAX MAXHOSTNAMELEN
     33#else
     34#define HOST_NAME_MAX 255
     35#endif
     36#endif
     37
    2838/* This function should be used with care. host should be AT LEAST a
    29    char[NI_MAXHOST+1] and port AT LEAST a char[6]. */
     39   char[HOST_NAME_MAX+1] and port AT LEAST a char[6]. */
    3040int ft_listen(struct sockaddr_storage *saddr_ptr, char *host, char *port, int copy_fd, int for_bitlbee_client,
    3141              char **errptr);
Note: See TracChangeset for help on using the changeset viewer.