view src/login-common/master.h @ 9651:9ab1c8a10944 HEAD

lib-storage: Message size lookups from cache was broken if fields weren't in "normal" order in file.
author Timo Sirainen <tss@iki.fi>
date Wed, 25 Jan 2012 23:45:02 +0200
parents 29b623366e1e
children
line wrap: on
line source

#ifndef MASTER_H
#define MASTER_H

struct client;

#include "../master/master-login-interface.h"

typedef void master_callback_t(struct client *client,
			       const struct master_login_reply *reply);

void master_request_login(struct client *client, master_callback_t *callback,
			  unsigned int auth_pid, unsigned int auth_id);
void master_request_abort(struct client *client);

/* Notify master of a change in our state */
void master_notify_state_change(enum master_login_state state);

/* Close connection to master process */
void master_close(void);

/* inetd: Connect to existing master process, or create new one. */
int master_connect(const char *group_name);

void master_init(int fd);
void master_deinit(void);

#endif