
| Current Path : /include/dovecot/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //include/dovecot/pop3-commands.h |
#ifndef POP3_COMMANDS_H
#define POP3_COMMANDS_H
struct pop3_command {
const char *name;
int (*func)(struct client *client, const char *args);
};
const struct pop3_command *pop3_command_find(const char *name);
int client_command_execute(struct client *client,
const struct pop3_command *cmd, const char *args);
#endif