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 dd3a3bc6 2006-05-10 alex * $Id: rendezvous.h,v 1.4 2006/05/10 21:24:01 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 02b0a515 2005-07-08 alex #ifdef ZEROCONF
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 8adff592 2005-03-19 fw GLOBAL void Rendezvous_Init( void );
24 8adff592 2005-03-19 fw GLOBAL void Rendezvous_Exit( void );
25 aa152579 2003-02-23 alex
26 dd3a3bc6 2006-05-10 alex GLOBAL bool Rendezvous_Register( char *Name, char *Type, UINT16 Port );
27 aa152579 2003-02-23 alex
28 8adff592 2005-03-19 fw GLOBAL bool Rendezvous_Unregister( char *Name );
29 8adff592 2005-03-19 fw GLOBAL void Rendezvous_UnregisterListeners( void );
30 aa152579 2003-02-23 alex
31 8adff592 2005-03-19 fw 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 02b0a515 2005-07-08 alex #endif /* ZEROCONF */
37 aa152579 2003-02-23 alex
38 aa152579 2003-02-23 alex
39 aa152579 2003-02-23 alex /* -eof- */