]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - credential.h
gitweb: correctly store previous rev in javascript-actions mode
[thirdparty/git.git] / credential.h
... / ...
CommitLineData
1#ifndef CREDENTIAL_H
2#define CREDENTIAL_H
3
4#include "string-list.h"
5
6struct credential {
7 struct string_list helpers;
8 unsigned approved:1,
9 configured:1,
10 quit:1,
11 use_http_path:1;
12
13 char *username;
14 char *password;
15 char *protocol;
16 char *host;
17 char *path;
18};
19
20#define CREDENTIAL_INIT { STRING_LIST_INIT_DUP }
21
22void credential_init(struct credential *);
23void credential_clear(struct credential *);
24
25void credential_fill(struct credential *);
26void credential_approve(struct credential *);
27void credential_reject(struct credential *);
28
29int credential_read(struct credential *, FILE *);
30void credential_write(const struct credential *, FILE *);
31void credential_from_url(struct credential *, const char *url);
32int credential_match(const struct credential *have,
33 const struct credential *want);
34
35#endif /* CREDENTIAL_H */