Renderers cleanup part 2
[citadel.git] / textclient / src / include / client_passwords.h
1 /* 
2  * Copyright (c) 1987-2012 by the citadel.org team
3  *
4  *  This program is open source software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License version 3.
6  *
7  *  This program is distributed in the hope that it will be useful,
8  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *  GNU General Public License for more details.
11  */
12
13
14 void determine_pwfilename(char *pwfile, size_t n);
15 void get_stored_password(
16                 char *host,
17                 char *port,
18                 char *username,
19                 char *password);
20 void set_stored_password(
21                 char *host,
22                 char *port,
23                 char *username,
24                 char *password);
25 void offer_to_remember_password(CtdlIPC *ipc,
26                 char *host,
27                 char *port,
28                 char *username,
29                 char *password);