rendezvous.h 966 B

123456789101112131415161718192021222324252627282930313233343536373839
  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.4 2006/05/10 21:24:01 alex Exp $
  12. *
  13. * "Rendezvous" functions (Header)
  14. */
  15. #ifdef ZEROCONF
  16. #ifndef __rdezvous_h__
  17. #define __rdezvous_h__
  18. GLOBAL void Rendezvous_Init( void );
  19. GLOBAL void Rendezvous_Exit( void );
  20. GLOBAL bool Rendezvous_Register( char *Name, char *Type, UINT16 Port );
  21. GLOBAL bool Rendezvous_Unregister( char *Name );
  22. GLOBAL void Rendezvous_UnregisterListeners( void );
  23. GLOBAL void Rendezvous_Handler( void );
  24. #endif /* __rdezvous_h__ */
  25. #endif /* ZEROCONF */
  26. /* -eof- */