Asterisk - The Open Source Telephony Project  18.5.0
store.h
Go to the documentation of this file.
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 2020, Sangoma Technologies Corporation
5  *
6  * Kevin Harwell <[email protected]>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  */
18 #ifndef _STIR_SHAKEN_STORE_H
19 #define _STIR_SHAKEN_STORE_H
20 
21 struct ast_sorcery;
22 
23 /*!
24  * \brief Load time initialization for the stir/shaken 'store' configuration
25  *
26  * \retval 0 on success, -1 on error
27  */
28 int stir_shaken_store_load(void);
29 
30 /*!
31  * \brief Unload time cleanup for the stir/shaken 'store' configuration
32  *
33  * \retval 0 on success, -1 on error
34  */
35 int stir_shaken_store_unload(void);
36 
37 #endif /* _STIR_SHAKEN_STORE_H */
int stir_shaken_store_load(void)
Load time initialization for the stir/shaken &#39;store&#39; configuration.
Definition: store.c:180
Full structure for sorcery.
Definition: sorcery.c:230
int stir_shaken_store_unload(void)
Unload time cleanup for the stir/shaken &#39;store&#39; configuration.
Definition: store.c:172