master-login-interface.h revision 25757faf029c369a8318349dafe952e2358df1d8
#ifndef __MASTER_LOGIN_INTERFACE_H
#define __MASTER_LOGIN_INTERFACE_H
#include "network.h"
#define LOGIN_MASTER_SOCKET_FD 0
#define LOGIN_IMAP_LISTEN_FD 1
#define LOGIN_IMAPS_LISTEN_FD 2
struct master_login_request {
unsigned int tag;
unsigned int auth_pid;
unsigned int auth_id;
};
struct master_login_reply {
unsigned int tag;
int success;
};
#endif