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 #include <sys/types.h>
18 #include <sys/queue.h>
20 #include <sys/socket.h>
31 #include "got_compat.h"
33 #include "got_error.h"
34 #include "got_object.h"
35 #include "got_repository.h"
37 #include "got_lib_gotconfig.h"
39 #include "got_gotconfig.h"
42 got_gotconfig_free(struct got_gotconfig
*conf
)
51 for (i
= 0; i
< conf
->nremotes
; i
++)
52 got_repo_free_remote_repo_data(&conf
->remotes
[i
]);
58 got_gotconfig_get_author(const struct got_gotconfig
*conf
)
64 got_gotconfig_get_remotes(int *nremotes
, const struct got_remote_repo
**remotes
,
65 const struct got_gotconfig
*conf
)
67 *nremotes
= conf
->nremotes
;
68 *remotes
= conf
->remotes
;
72 got_gotconfig_get_allowed_signers_file(const struct got_gotconfig
*conf
)
74 return conf
->allowed_signers_file
;
78 got_gotconfig_get_revoked_signers_file(const struct got_gotconfig
*conf
)
80 return conf
->revoked_signers_file
;
84 got_gotconfig_get_signer_id(const struct got_gotconfig
*conf
)
86 return conf
->signer_id
;