1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/*
Authentication.h
*/
#ifndef __AUTHENTICATION_H
#define __AUTHENTICATION_H
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <signal.h>
#include "xdb.h"
#include "Utils.h"
#include "Config.h"
#include "Configuration.h"
#include "XString.h"
#include "XVector.h"
#include "Cookie.h"
#include "CCLIENT.h"
#include "ClientLDAP.h"
typedef XVector<XString> StringList;
class Authentication
{
private:
XString username, password, tmp_password, server;
int iservice, port;
Cookie *cookie;
TBuffer ErrorString;
bool IS_AUTHENTICATED;
bool imap_authentication (void);
bool ldap_authentication (void);
void do_store_password (void);
public:
Authentication (int aservice, const char *aserver, int aport, const char *ausername, const char *apassword, const char *connid);
virtual ~Authentication ();
const char *getErrorMsg (void);
bool doFirstAuthentication (void);
const char *cookie_getSetFullCookieLine (void);
const char *cookie_getSetClearFullCookieLine(void);
bool isGoodCookie (const char *acookie);
};
#endif
|