format_nss.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* String formatting functions for NSS- and DNS-related data.
  2. Copyright (C) 2016-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef SUPPORT_FORMAT_NSS_H
  16. #define SUPPORT_FORMAT_NSS_H
  17. #include <netdb.h>
  18. #include <sys/cdefs.h>
  19. __BEGIN_DECLS
  20. /* The following functions format their arguments as human-readable
  21. strings (which can span multiple lines). The caller must free the
  22. returned buffer. For NULL pointers or failure status arguments,
  23. error variables such as h_errno and errno are included in the
  24. result. */
  25. char *support_format_address_family (int);
  26. char *support_format_addrinfo (struct addrinfo *, int ret);
  27. char *support_format_dns_packet (const unsigned char *buffer, size_t length);
  28. char *support_format_herrno (int);
  29. char *support_format_hostent (struct hostent *);
  30. char *support_format_netent (struct netent *);
  31. __END_DECLS
  32. #endif /* SUPPORT_FORMAT_NSS_H */