/usr/include/ircd-hybrid-8/send.h is in hybrid-dev 1:8.2.12+dfsg.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | /*
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
*
* Copyright (c) 1997-2016 ircd-hybrid development team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
/*! \file send.h
* \brief A header for the message sending functions.
* \version $Id: send.h 7007 2016-01-01 00:09:08Z michael $
*/
#ifndef INCLUDED_send_h
#define INCLUDED_send_h
#include "fdlist.h"
#include "numeric.h"
enum
{
L_ALL = 0,
L_OPER = 1,
L_ADMIN = 2
};
enum
{
SEND_NOTICE = 1,
SEND_GLOBAL = 2,
SEND_LOCOPS = 3
};
/* Used when sending to $#mask or $$mask */
enum
{
MATCH_SERVER = 1,
MATCH_HOST = 2
};
/*
* struct decls
*/
struct Channel;
struct Client;
/* send.c prototypes */
extern void sendq_unblocked(fde_t *, void *);
extern void send_queued_write(struct Client *);
extern void send_queued_all(void);
extern void sendto_one(struct Client *, const char *, ...) AFP(2,3);
extern void sendto_one_numeric(struct Client *, struct Client *, enum irc_numerics, ...);
extern void sendto_one_notice(struct Client *, struct Client *, const char *, ...) AFP(3,4);
extern void sendto_channel_butone(struct Client *, struct Client *,
struct Channel *, unsigned int,
const char *, ...) AFP(5,6);
extern void sendto_common_channels_local(struct Client *, int, unsigned int, unsigned int,
const char *, ...) AFP(5,6);
extern void sendto_channel_local(const struct Client *, struct Channel *, unsigned int,
unsigned int, unsigned int, const char *, ...) AFP(6,7);
extern void sendto_server(struct Client *,
const unsigned int,
const unsigned int, const char *, ...) AFP(4,5);
extern void sendto_match_butone(struct Client *, struct Client *,
const char *, int, const char *, ...) AFP(5,6);
extern void sendto_match_servs(struct Client *, const char *, unsigned int,
const char *, ...) AFP(4,5);
extern void sendto_realops_flags(unsigned int, int, int,
const char *, ...) AFP(4,5);
extern void sendto_wallops_flags(unsigned int, struct Client *,
const char *, ...) AFP(3,4);
extern void sendto_realops_flags_ratelimited(time_t *, const char *, ...) AFP(2,3);
extern void sendto_anywhere(struct Client *, struct Client *,
const char *,
const char *, ...) AFP(4,5);
#endif /* INCLUDED_send_h */
|