master-login-interface.h revision 6ef7e31619edfaa17ed044b45861d106a86191ef
#ifndef __MASTER_LOGIN_INTERFACE_H
#define __MASTER_LOGIN_INTERFACE_H
#include "network.h"
#define LOGIN_LISTEN_FD 0
#define LOGIN_SSL_LISTEN_FD 1
#define LOGIN_MASTER_SOCKET_FD 3
/* Increase the version number every time master_login_request
(or something else) is changed. */
#define MASTER_LOGIN_PROTOCOL_VERSION 1
struct master_login_request {
};
struct master_login_reply {
unsigned int tag;
bool success;
};
#endif