File: commands.h

package info (click to toggle)
dovecot 1%3A1.2.15-7
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 30,252 kB
  • ctags: 19,837
  • sloc: ansic: 191,438; sh: 21,091; makefile: 3,330; cpp: 526; perl: 108; xml: 44
file content (49 lines) | stat: -rw-r--r-- 1,643 bytes parent folder | download | duplicates (2)
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
/* Copyright (c) 2002-2010 Dovecot Sieve authors, see the included COPYING file
 */

#ifndef __COMMANDS_H
#define __COMMANDS_H

struct client_command_context;

#include "managesieve-parser.h"

typedef bool command_func_t(struct client_command_context *cmd);

struct command {
	const char *name;
	command_func_t *func;
};

/* Register command. Given name parameter must be permanently stored until
   command is unregistered. */
void command_register(const char *name, command_func_t *func);
void command_unregister(const char *name);

/* Register array of commands. */
void command_register_array(const struct command *cmdarr, unsigned int count);
void command_unregister_array(const struct command *cmdarr, unsigned int count);

struct command *command_find(const char *name);

void commands_init(void);
void commands_deinit(void);

/* MANAGESIEVE commands: */

/* Non-Authenticated State */
extern bool cmd_logout(struct client_command_context *cmd);
extern bool cmd_capability(struct client_command_context *cmd);
extern bool cmd_noop(struct client_command_context *cmd);

/* Authenticated State */
extern bool cmd_putscript(struct client_command_context *cmd);
extern bool cmd_checkscript(struct client_command_context *cmd);
extern bool cmd_getscript(struct client_command_context *cmd);
extern bool cmd_setactive(struct client_command_context *cmd);
extern bool cmd_deletescript(struct client_command_context *cmd);
extern bool cmd_listscripts(struct client_command_context *cmd);
extern bool cmd_havespace(struct client_command_context *cmd);
extern bool cmd_renamescript(struct client_command_context *cmd);

#endif /* __COMMANDS_H */