resolve.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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.13 2006/05/10 21:24:02 alex Exp $
  12. *
  13. * Asynchronous resolver (header)
  14. */
  15. #ifndef __resolve_h__
  16. #define __resolve_h__
  17. #include "array.h"
  18. #include <netinet/in.h>
  19. /* This struct must not be accessed directly */
  20. typedef struct _Res_Stat {
  21. pid_t pid; /* PID of resolver process */
  22. int resolver_fd; /* pipe fd for lookup result. */
  23. } RES_STAT;
  24. #define Resolve_Getfd(x) ((x)->resolver_fd)
  25. #define Resolve_INPROGRESS(x) ((x)->resolver_fd >= 0)
  26. GLOBAL bool Resolve_Addr PARAMS(( RES_STAT *s, struct sockaddr_in *Addr, int identsock, void (*cbfunc)(int, short)));
  27. GLOBAL bool Resolve_Name PARAMS(( RES_STAT *s, const char *Host, void (*cbfunc)(int, short) ));
  28. GLOBAL size_t Resolve_Read PARAMS(( RES_STAT *s, void *buf, size_t buflen));
  29. GLOBAL void Resolve_Init PARAMS(( RES_STAT *s));
  30. GLOBAL bool Resolve_Shutdown PARAMS(( RES_STAT *s));
  31. #endif
  32. /* -eof- */