worktree: remove extra members from struct add_opts
[git.git] / credential.h
blob6b0cd16be2b96b23ae5ce14a07a8ad130af8d5bb
1 #ifndef CREDENTIAL_H
2 #define CREDENTIAL_H
4 #include "string-list.h"
6 struct credential {
7 struct string_list helpers;
8 unsigned approved:1,
9 configured:1,
10 quit:1,
11 use_http_path:1;
13 char *username;
14 char *password;
15 char *protocol;
16 char *host;
17 char *path;
20 #define CREDENTIAL_INIT { STRING_LIST_INIT_DUP }
22 void credential_init(struct credential *);
23 void credential_clear(struct credential *);
25 void credential_fill(struct credential *);
26 void credential_approve(struct credential *);
27 void credential_reject(struct credential *);
29 int credential_read(struct credential *, FILE *);
30 void credential_write(const struct credential *, FILE *);
31 void credential_from_url(struct credential *, const char *url);
32 int credential_match(const struct credential *have,
33 const struct credential *want);
35 #endif /* CREDENTIAL_H */