Blob


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 */
17 #ifdef RENDEZVOUS
19 #ifndef __rdezvous_h__
20 #define __rdezvous_h__
23 GLOBAL VOID Rendezvous_Init( VOID );
24 GLOBAL VOID Rendezvous_Exit( VOID );
26 GLOBAL BOOLEAN Rendezvous_Register( CHAR *Name, CHAR *Type, UINT Port );
28 GLOBAL BOOLEAN Rendezvous_Unregister( CHAR *Name );
29 GLOBAL VOID Rendezvous_UnregisterListeners( VOID );
31 GLOBAL VOID Rendezvous_Handler( VOID );
34 #endif /* __rdezvous_h__ */
36 #endif /* RENDEZVOUS */
39 /* -eof- */