Author: ume
Date: Fri Jan  1 00:35:06 2016
New Revision: 293023
URL: https://svnweb.freebsd.org/changeset/base/293023

Log:
  MFC r292719:
    Remove _gethostbynisname() and _gethostbynisaddr().  These functions
    used to be called from getipnodebyname().

Modified:
  stable/10/lib/libc/net/gethostbynis.c
  stable/10/lib/libc/net/netdb_private.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/net/gethostbynis.c
==============================================================================
--- stable/10/lib/libc/net/gethostbynis.c       Fri Jan  1 00:21:07 2016        
(r293022)
+++ stable/10/lib/libc/net/gethostbynis.c       Fri Jan  1 00:35:06 2016        
(r293023)
@@ -198,61 +198,6 @@ _gethostbynisaddr_r(const void *addr, so
 }
 #endif /* YP */
 
-/* XXX _gethostbynisname/_gethostbynisaddr only used by getipnodeby*() */
-struct hostent *
-_gethostbynisname(const char *name, int af)
-{
-#ifdef YP
-       struct hostent *he;
-       struct hostent_data *hed;
-       u_long oresopt;
-       int error;
-       res_state statp;
-
-       statp = __res_state();
-       if ((he = __hostent_init()) == NULL ||
-           (hed = __hostent_data_init()) == NULL) {
-               RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
-               return (NULL);
-       }
-
-       oresopt = statp->options;
-       statp->options &= ~RES_USE_INET6;
-       error = _gethostbynisname_r(name, af, he, hed);
-       statp->options = oresopt;
-       return (error == 0) ? he : NULL;
-#else
-       return (NULL);
-#endif
-}
-
-struct hostent *
-_gethostbynisaddr(const void *addr, socklen_t len, int af)
-{
-#ifdef YP
-       struct hostent *he;
-       struct hostent_data *hed;
-       u_long oresopt;
-       int error;
-       res_state statp;
-
-       statp = __res_state();
-       if ((he = __hostent_init()) == NULL ||
-           (hed = __hostent_data_init()) == NULL) {
-               RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
-               return (NULL);
-       }
-
-       oresopt = statp->options;
-       statp->options &= ~RES_USE_INET6;
-       error = _gethostbynisaddr_r(addr, len, af, he, hed);
-       statp->options = oresopt;
-       return (error == 0) ? he : NULL;
-#else
-       return (NULL);
-#endif
-}
-
 int
 _nis_gethostbyname(void *rval, void *cb_data, va_list ap)
 {

Modified: stable/10/lib/libc/net/netdb_private.h
==============================================================================
--- stable/10/lib/libc/net/netdb_private.h      Fri Jan  1 00:21:07 2016        
(r293022)
+++ stable/10/lib/libc/net/netdb_private.h      Fri Jan  1 00:35:06 2016        
(r293023)
@@ -133,8 +133,6 @@ void _endhostdnsent(void);
 void _endhosthtent(struct hostent_data *);
 void _endnetdnsent(void);
 void _endnethtent(struct netent_data *);
-struct hostent *_gethostbynisaddr(const void *, socklen_t, int);
-struct hostent *_gethostbynisname(const char *, int);
 void _map_v4v6_address(const char *, char *);
 void _map_v4v6_hostent(struct hostent *, char **, char *);
 void _sethostdnsent(int);
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to