ares_expand_name.3 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .\" $Id$
  2. .\"
  3. .\" Copyright 1998 by the Massachusetts Institute of Technology.
  4. .\"
  5. .\" Permission to use, copy, modify, and distribute this
  6. .\" software and its documentation for any purpose and without
  7. .\" fee is hereby granted, provided that the above copyright
  8. .\" notice appear in all copies and that both that copyright
  9. .\" notice and this permission notice appear in supporting
  10. .\" documentation, and that the name of M.I.T. not be used in
  11. .\" advertising or publicity pertaining to distribution of the
  12. .\" software without specific, written prior permission.
  13. .\" M.I.T. makes no representations about the suitability of
  14. .\" this software for any purpose. It is provided "as is"
  15. .\" without express or implied warranty.
  16. .\"
  17. .TH ARES_EXPAND_NAME 3 "23 July 1998"
  18. .SH NAME
  19. ares_expand_name \- Expand a DNS-encoded domain name
  20. .SH SYNOPSIS
  21. .nf
  22. .B #include <ares.h>
  23. .PP
  24. .B int ares_expand_name(const unsigned char *\fIencoded\fP,
  25. .B const unsigned char *\fIabuf\fP, int \fIalen\fP, char **\fIs\fP,
  26. .B int *\fIenclen\fP)
  27. .fi
  28. .SH DESCRIPTION
  29. The
  30. .B ares_expand_name
  31. function converts a DNS-encoded domain name to a dot-separated C
  32. string. The argument
  33. .I encoded
  34. gives the beginning of the encoded domain name, and the arguments
  35. .I abuf
  36. and
  37. .I alen
  38. give the containing message buffer (necessary for the processing of
  39. indirection pointers within the encoded domain name). The result is
  40. placed in a NUL-terminated allocated buffer, a pointer to which is
  41. stored in the variable pointed to by
  42. .IR s .
  43. The length of the encoded name is stored in the variable pointed to by
  44. .I enclen
  45. so that the caller can advance past the encoded domain name to read
  46. further data in the message.
  47. .SH RETURN VALUES
  48. .B ares_expand_name
  49. can return any of the following values:
  50. .TP 15
  51. .B ARES_SUCCESS
  52. Expansion of the encoded name succeeded.
  53. .TP 15
  54. .B ARES_EBADNAME
  55. The encoded domain name was malformed and could not be expanded.
  56. .TP 15
  57. .B ARES_ENOMEM
  58. Memory was exhausted.
  59. .SH SEE ALSO
  60. .BR ares_mkquery (3)
  61. .SH AUTHOR
  62. Greg Hudson, MIT Information Systems
  63. .br
  64. Copyright 1998 by the Massachusetts Institute of Technology.