view src/stats/mail-command.h @ 22638:7d5634889da8

lib: net_ip2addr() - Optimize by allocating destination memory immediately It doesn't really matter if we allocate a few extra bytes.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sat, 04 Nov 2017 01:42:37 +0200
parents e62621d28591
children
line wrap: on
line source

#ifndef MAIL_COMMAND_H
#define MAIL_COMMAND_H

struct mail_command;

extern struct mail_command *stable_mail_commands_head;
extern struct mail_command *stable_mail_commands_tail;

int mail_command_update_parse(const char *const *args, const char **error_r);

void mail_command_ref(struct mail_command *cmd);
void mail_command_unref(struct mail_command **cmd);

void mail_commands_free_memory(void);
void mail_commands_init(void);
void mail_commands_deinit(void);

#endif