aboutsummaryrefslogtreecommitdiffstats
path: root/src/opercmd.h
blob: 1a77c07693a273430acc6172b2783ec9a57c9d6f (plain) (blame)
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
/*
 *  Copyright (c) 2002 Erik Fears
 *  Copyright (c) 2014-2020 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
 */

#ifndef OPERCMD_H
#define OPERCMD_H

struct OperCommandHash
{
  const char *command;
  void (*handler)(char *, const char *);
};

struct Command
{
  node_t node;  /**< List node; linked into COMMANDS */

  /* Points to specific entry in COMMAND_TABLE in opercmd.c */
  const struct OperCommandHash *tab;

  /* Command parameter.
   * <erik> but i cant think of any commands bopm will ever have that is
   *   multiple parameters
   *
   *         I still havn't  -Erik 12/11/02
   */
  char *param;

  /* Who ordered it. */
  char *irc_nick;

  /* Where the reply is to be sent. */
  const char *target;

  /*
   * When it was added, because we might need to remove it if it does
   * not get executed.
   */
  time_t added;
};

extern void command_init(void);
extern void command_userhost(const char *);
extern void command_timer(void);
extern void command_parse(const char *, const char *, const char *);
#endif