File: ClientPOPPASS.h

package info (click to toggle)
postman 2.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,240 kB
  • ctags: 3,249
  • sloc: cpp: 33,376; ansic: 2,014; sh: 780; makefile: 300
file content (35 lines) | stat: -rw-r--r-- 641 bytes parent folder | download | duplicates (3)
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
/*
ClientPOPPASS.h
*/

#ifndef __CLIENTPOPPASS_H
#define __CLIENTPOPPASS_H

#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <signal.h>

#include "Language.h"
#include "Utils.h"
#include "Config.h"
#include "XSocket.h"
#include "XVector.h"

class ClientPOPPASS
  {
  private:
    IPNAME server;
    TBuffer user, oldpw, newpw;
    int poppassport; 
  public:
    ClientPOPPASS (const char *aserver, int aport, const char *auser, const char *aoldpw, const char *anewpw);
    virtual ~ClientPOPPASS ();
    bool doChangePassword (TBuffer ErrorString);
  };

#endif