~registry/ngircd/testing

« back to all changes in this revision

Viewing changes to src/ngircd/irc-write.h

  • Committer: DNS
  • Date: 2013-08-27 14:48:36 UTC
  • mfrom: (2671.5.8)
  • Revision ID: git-v1:bdb2850b399a7fac6a70fe24bd1f58dbd78cc307
Merge branch 'master' into testing

· Remove Conf_PreventLocalChans and Conf_PreventMLChans, obsolete now
· Remove RPL_HELP_MSG

Fixed conflicts with:
        doc/sample-ngircd.conf.tmpl
        man/ngircd.conf.5.tmpl
        src/ngircd/conf.c
        src/ngircd/irc-channel.c
        src/ngircd/irc-info.c
        src/ngircd/messages.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * ngIRCd -- The Next Generation IRC Daemon
3
 
 * Copyright (c)2001-2008 Alexander Barton (alex@barton.de)
 
3
 * Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors.
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or modify
6
6
 * it under the terms of the GNU General Public License as published by
17
17
 * Sending IRC commands over the network (header)
18
18
 */
19
19
 
 
20
GLOBAL bool IRC_WriteErrClient PARAMS((CLIENT *Client, const char *Format, ...));
 
21
 
20
22
GLOBAL bool IRC_WriteStrClient PARAMS((CLIENT *Client, const char *Format, ...));
21
23
GLOBAL bool IRC_WriteStrClientPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
22
24
                const char *Format, ...));
23
25
 
24
 
GLOBAL bool IRC_WriteStrChannel PARAMS((CLIENT *Client, CHANNEL *Chan,
 
26
GLOBAL void IRC_WriteStrChannel PARAMS((CLIENT *Client, CHANNEL *Chan,
25
27
                bool Remote, const char *Format, ...));
26
 
GLOBAL bool IRC_WriteStrChannelPrefix PARAMS((CLIENT *Client, CHANNEL *Chan,
 
28
GLOBAL void IRC_WriteStrChannelPrefix PARAMS((CLIENT *Client, CHANNEL *Chan,
27
29
                CLIENT *Prefix, bool Remote, const char *Format, ...));
28
30
 
29
31
GLOBAL void IRC_WriteStrServers PARAMS((CLIENT *ExceptOf,
36
38
                CLIENT *Prefix, char Flag,
37
39
                void (*callback)(CLIENT *, CLIENT *, void *), void *cb_data));
38
40
 
39
 
GLOBAL bool IRC_WriteStrRelatedPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
 
41
GLOBAL void IRC_WriteStrRelatedPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
40
42
                bool Remote, const char *Format, ...));
41
43
 
42
44
GLOBAL void IRC_SendWallops PARAMS((CLIENT *Client, CLIENT *From,