2
0

config.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2018 SignalWire, Inc
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in all
  12. * copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. #pragma once
  23. KS_BEGIN_EXTERN_C
  24. /* Obfuscate our config internals */
  25. typedef struct swclt_config_s swclt_config_t;
  26. SWCLT_DECLARE(ks_status_t) swclt_config_create(swclt_config_t **config);
  27. SWCLT_DECLARE(ks_status_t) swclt_config_destroy(swclt_config_t **config);
  28. SWCLT_DECLARE(ks_status_t) swclt_config_load_from_json(swclt_config_t *config, ks_json_t *json);
  29. SWCLT_DECLARE(ks_status_t) swclt_config_load_from_env(swclt_config_t *config);
  30. SWCLT_DECLARE(const char *) swclt_config_get_private_key_path(swclt_config_t *config);
  31. SWCLT_DECLARE(ks_status_t) swclt_config_set_private_key_path(swclt_config_t *config, const char *value);
  32. SWCLT_DECLARE(const char *) swclt_config_get_client_cert_path(swclt_config_t *config);
  33. SWCLT_DECLARE(ks_status_t) swclt_config_set_client_cert_path(swclt_config_t *config, const char *value);
  34. SWCLT_DECLARE(const char *) swclt_config_get_cert_chain_path(swclt_config_t *config);
  35. SWCLT_DECLARE(ks_status_t) swclt_config_set_cert_chain_path(swclt_config_t *config, const char *value);
  36. SWCLT_DECLARE(const char *) swclt_config_get_authentication(swclt_config_t *config);
  37. SWCLT_DECLARE(ks_status_t) swclt_config_set_authentication(swclt_config_t *config, const char *value);
  38. SWCLT_DECLARE(const char *) swclt_config_get_agent(swclt_config_t *config);
  39. SWCLT_DECLARE(ks_status_t) swclt_config_set_agent(swclt_config_t *config, const char *value);
  40. SWCLT_DECLARE(const char *) swclt_config_get_identity(swclt_config_t *config);
  41. SWCLT_DECLARE(ks_status_t) swclt_config_set_identity(swclt_config_t *config, const char *value);
  42. KS_END_EXTERN_C