irc-write.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors.
  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. #ifndef __irc_write_h__
  12. #define __irc_write_h__
  13. /**
  14. * @file
  15. * Sending IRC commands over the network (header)
  16. */
  17. GLOBAL bool IRC_WriteErrClient PARAMS((CLIENT *Client, const char *Format, ...));
  18. GLOBAL bool IRC_WriteStrClient PARAMS((CLIENT *Client, const char *Format, ...));
  19. GLOBAL bool IRC_WriteStrClientPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
  20. const char *Format, ...));
  21. GLOBAL void IRC_WriteStrChannel PARAMS((CLIENT *Client, CHANNEL *Chan,
  22. bool Remote, const char *Format, ...));
  23. GLOBAL void IRC_WriteStrChannelPrefix PARAMS((CLIENT *Client, CHANNEL *Chan,
  24. CLIENT *Prefix, bool Remote, const char *Format, ...));
  25. GLOBAL void IRC_WriteStrServers PARAMS((CLIENT *ExceptOf,
  26. const char *Format, ...));
  27. GLOBAL void IRC_WriteStrServersPrefix PARAMS((CLIENT *ExceptOf, CLIENT *Prefix,
  28. const char *Format, ...));
  29. GLOBAL void IRC_WriteStrServersPrefixFlag PARAMS((CLIENT *ExceptOf,
  30. CLIENT *Prefix, char Flag, const char *Format, ...));
  31. GLOBAL void IRC_WriteStrServersPrefixFlag_CB PARAMS((CLIENT *ExceptOf,
  32. CLIENT *Prefix, char Flag,
  33. void (*callback)(CLIENT *, CLIENT *, void *), void *cb_data));
  34. GLOBAL void IRC_WriteStrRelatedPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
  35. bool Remote, const char *Format, ...));
  36. GLOBAL void IRC_SendWallops PARAMS((CLIENT *Client, CLIENT *From,
  37. const char *Format, ...));
  38. GLOBAL void IRC_SetPenalty PARAMS((CLIENT *Client, time_t Seconds));
  39. #endif
  40. /* -eof- */