resolve.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2003 by Alexander Barton (alex@barton.de)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. * Please read the file COPYING, README and AUTHORS for more information.
  10. *
  11. * $Id: resolve.h,v 1.14 2008/02/26 22:04:17 fw Exp $
  12. *
  13. * Asynchronous resolver (header)
  14. */
  15. #ifndef __resolve_h__
  16. #define __resolve_h__
  17. #include "array.h"
  18. #include "tool.h"
  19. #include "ng_ipaddr.h"
  20. #include <netinet/in.h>
  21. /* This struct must not be accessed directly */
  22. typedef struct _Res_Stat {
  23. pid_t pid; /* PID of resolver process */
  24. int resolver_fd; /* pipe fd for lookup result. */
  25. } RES_STAT;
  26. #define Resolve_Getfd(x) ((x)->resolver_fd)
  27. #define Resolve_INPROGRESS(x) ((x)->resolver_fd >= 0)
  28. GLOBAL bool Resolve_Addr PARAMS(( RES_STAT *s, const ng_ipaddr_t *Addr, int identsock, void (*cbfunc)(int, short)));
  29. GLOBAL bool Resolve_Name PARAMS(( RES_STAT *s, const char *Host, void (*cbfunc)(int, short) ));
  30. GLOBAL size_t Resolve_Read PARAMS(( RES_STAT *s, void *buf, size_t buflen));
  31. GLOBAL void Resolve_Init PARAMS(( RES_STAT *s));
  32. GLOBAL bool Resolve_Shutdown PARAMS(( RES_STAT *s));
  33. #endif
  34. /* -eof- */