auth-master.h revision fc464e5b2b2ab4d415a5d5b90ce4475d34620a75
#ifndef AUTH_MASTER_H
#define AUTH_MASTER_H
#include "network.h"
struct auth_user_info {
const char *service;
unsigned int local_port, remote_port;
};
struct auth_user_reply {
};
struct auth_master_connection *
/* Do a USER lookup. Returns -1 = error, 0 = user not found, 1 = ok */
/* Do a PASS lookup (the actual password isn't returned). */
/* Iterate through all users. */
struct auth_master_user_list_ctx *
/* Returns -1 if anything failed, 0 if ok */
#endif