auth-client.h revision 8222ce68120b51353a3b31d3073b5f845d0e9f53
#ifndef __AUTH_CLIENT_H
#define __AUTH_CLIENT_H
#include "../auth/auth-client-interface.h"
struct auth_client;
struct auth_request;
/* reply is NULL if auth connection died */
struct auth_client_request_reply *reply,
/* Create new authentication client. */
void *context);
/* Create a new authentication request. callback is called whenever something
happens for the request. */
struct auth_request *
const char **error_r);
/* Continue authentication. Call when
reply->result == AUTH_CLIENT_REQUEST_CONTINUE */
/* Abort ongoing authentication request. */
/* Return ID of this request. */
/* Return the PID of the server that handled this request. */
#endif