Blame


1 aa152579 2003-02-23 alex /*
2 aa152579 2003-02-23 alex * ngIRCd -- The Next Generation IRC Daemon
3 aa152579 2003-02-23 alex * Copyright (c)2001-2003 by Alexander Barton (alex@barton.de)
4 aa152579 2003-02-23 alex *
5 aa152579 2003-02-23 alex * This program is free software; you can redistribute it and/or modify
6 aa152579 2003-02-23 alex * it under the terms of the GNU General Public License as published by
7 aa152579 2003-02-23 alex * the Free Software Foundation; either version 2 of the License, or
8 aa152579 2003-02-23 alex * (at your option) any later version.
9 aa152579 2003-02-23 alex * Please read the file COPYING, README and AUTHORS for more information.
10 aa152579 2003-02-23 alex *
11 aa152579 2003-02-23 alex * $Id: rendezvous.h,v 1.1 2003/02/23 12:02:26 alex Exp $
12 aa152579 2003-02-23 alex *
13 aa152579 2003-02-23 alex * "Rendezvous" functions (Header)
14 aa152579 2003-02-23 alex */
15 aa152579 2003-02-23 alex
16 aa152579 2003-02-23 alex
17 aa152579 2003-02-23 alex #ifdef RENDEZVOUS
18 aa152579 2003-02-23 alex
19 aa152579 2003-02-23 alex #ifndef __rdezvous_h__
20 aa152579 2003-02-23 alex #define __rdezvous_h__
21 aa152579 2003-02-23 alex
22 aa152579 2003-02-23 alex
23 aa152579 2003-02-23 alex GLOBAL VOID Rendezvous_Init( VOID );
24 aa152579 2003-02-23 alex GLOBAL VOID Rendezvous_Exit( VOID );
25 aa152579 2003-02-23 alex
26 aa152579 2003-02-23 alex GLOBAL BOOLEAN Rendezvous_Register( CHAR *Name, CHAR *Type, UINT Port );
27 aa152579 2003-02-23 alex
28 aa152579 2003-02-23 alex GLOBAL BOOLEAN Rendezvous_Unregister( CHAR *Name );
29 aa152579 2003-02-23 alex GLOBAL VOID Rendezvous_UnregisterListeners( VOID );
30 aa152579 2003-02-23 alex
31 aa152579 2003-02-23 alex GLOBAL VOID Rendezvous_Handler( VOID );
32 aa152579 2003-02-23 alex
33 aa152579 2003-02-23 alex
34 aa152579 2003-02-23 alex #endif /* __rdezvous_h__ */
35 aa152579 2003-02-23 alex
36 aa152579 2003-02-23 alex #endif /* RENDEZVOUS */
37 aa152579 2003-02-23 alex
38 aa152579 2003-02-23 alex
39 aa152579 2003-02-23 alex /* -eof- */