portable: gotd: listen
[got-portable.git] / include / got_gotconfig.h
blob856906fff4ebd284a8a00d8f3b215d57faaa4a96
1 /*
2 * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 struct got_gotconfig;
20 * Obtain the commit author parsed from got.conf.
21 * Return NULL if no configuration file or author could be found.
23 const char *got_gotconfig_get_author(const struct got_gotconfig *);
26 * Obtain the list of remote repositories parsed from got.conf.
27 * Return 0 and NULL if no configuration file or remote repository
28 * could be found.
30 void got_gotconfig_get_remotes(int *, const struct got_remote_repo **,
31 const struct got_gotconfig *);
34 * Obtain the filename of the allowed signers file.
35 * Returns NULL if no configuration file is found or no allowed signers file
36 * is configured.
38 const char *
39 got_gotconfig_get_allowed_signers_file(const struct got_gotconfig *);
42 * Obtain the filename of the revoked signers file.
43 * Returns NULL if no configuration file is found or no revoked signers file
44 * is configured.
46 const char *
47 got_gotconfig_get_revoked_signers_file(const struct got_gotconfig *);
50 * Obtain the signer identity used to sign tag objects
51 * Returns NULL if no configuration file is found or no revoked signers file
52 * is configured.
54 const char *
55 got_gotconfig_get_signer_id(const struct got_gotconfig *);