]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/rendezvous.h
Added missing include for <sys/select.h>.
[ngircd-alex.git] / src / ngircd / rendezvous.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: rendezvous.h,v 1.1 2003/02/23 12:02:26 alex Exp $
12  *
13  * "Rendezvous" functions (Header)
14  */
15
16
17 #ifdef RENDEZVOUS
18
19 #ifndef __rdezvous_h__
20 #define __rdezvous_h__
21
22
23 GLOBAL VOID Rendezvous_Init( VOID );
24 GLOBAL VOID Rendezvous_Exit( VOID );
25
26 GLOBAL BOOLEAN Rendezvous_Register( CHAR *Name, CHAR *Type, UINT Port );
27
28 GLOBAL BOOLEAN Rendezvous_Unregister( CHAR *Name );
29 GLOBAL VOID Rendezvous_UnregisterListeners( VOID );
30
31 GLOBAL VOID Rendezvous_Handler( VOID );
32
33
34 #endif  /* __rdezvous_h__ */
35
36 #endif  /* RENDEZVOUS */
37
38
39 /* -eof- */