ares_mkquery.c 964 B

123456789101112131415161718192021222324
  1. /* Copyright 1998 by the Massachusetts Institute of Technology.
  2. *
  3. * Permission to use, copy, modify, and distribute this
  4. * software and its documentation for any purpose and without
  5. * fee is hereby granted, provided that the above copyright
  6. * notice appear in all copies and that both that copyright
  7. * notice and this permission notice appear in supporting
  8. * documentation, and that the name of M.I.T. not be used in
  9. * advertising or publicity pertaining to distribution of the
  10. * software without specific, written prior permission.
  11. * M.I.T. makes no representations about the suitability of
  12. * this software for any purpose. It is provided "as is"
  13. * without express or implied warranty.
  14. */
  15. #include "ares_setup.h"
  16. #include "ares.h"
  17. int ares_mkquery(const char *name, int dnsclass, int type, unsigned short id,
  18. int rd, unsigned char **buf, int *buflen)
  19. {
  20. return ares_create_query(name, dnsclass, type, id, rd, buf, buflen, 0);
  21. }