]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/resolve.h
Implement the IRC command "SERVLIST"
[ngircd-alex.git] / src / ngircd / resolve.h
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
16
17 #ifndef __resolve_h__
18 #define __resolve_h__
19
20 #include "array.h"
21 #include "tool.h"
22 #include "ng_ipaddr.h"
23
24 /* This struct must not be accessed directly */
25 typedef struct _Res_Stat {
26         pid_t pid;                      /* PID of resolver process */
27         int resolver_fd;                /* pipe fd for lookup result. */
28 } RES_STAT;
29
30
31 #define Resolve_Getfd(x)                ((x)->resolver_fd)
32 #define Resolve_INPROGRESS(x)           ((x)->resolver_fd >= 0)
33
34 GLOBAL bool Resolve_Addr PARAMS(( RES_STAT *s, const ng_ipaddr_t *Addr, int identsock, void (*cbfunc)(int, short)));
35 GLOBAL bool Resolve_Name PARAMS(( RES_STAT *s, const char *Host, void (*cbfunc)(int, short) ));
36 GLOBAL size_t Resolve_Read PARAMS(( RES_STAT *s, void *buf, size_t buflen));
37 GLOBAL void Resolve_Init PARAMS(( RES_STAT *s));
38 GLOBAL bool Resolve_Shutdown PARAMS(( RES_STAT *s));
39
40 #endif
41 /* -eof- */