]> git.sur5r.net Git - openldap/commitdiff
Add NI_MAXHOST if not defined; normally in <netdb.h> on IPv6 systems
authorHoward Chu <hyc@openldap.org>
Wed, 5 Mar 2003 01:33:36 +0000 (01:33 +0000)
committerHoward Chu <hyc@openldap.org>
Wed, 5 Mar 2003 01:33:36 +0000 (01:33 +0000)
include/ac/socket.h

index ded4c469685fca85c1ec73b1109a167e2b8d1a01..c0590c2e3d28e5a67309ba8a3c246130ea18be95 100644 (file)
@@ -205,4 +205,9 @@ LDAP_F (int) ldap_pvt_inet_aton LDAP_P(( const char *, struct in_addr * ));
 LDAP_LUTIL_F( int ) getpeereid( int s, uid_t *, gid_t * );
 #endif
 
+/* DNS RFC defines max host name as 255. New systems seem to use 1024 */
+#ifndef NI_MAXHOST
+#define        NI_MAXHOST      256
+#endif
+
 #endif /* _AC_SOCKET_H_ */