sip.h 570 B

12345678910111213141516171819202122232425262728
  1. #ifndef SIP_H
  2. #define SIP_H
  3. #include <stdbool.h>
  4. #include "esp_err.h"
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. extern volatile bool wifi_ready;
  9. void wifi_init(void);
  10. void sip_compute_response(const char *username,
  11. const char *realm,
  12. const char *password,
  13. const char *nonce,
  14. const char *uri,
  15. char *out_response);
  16. esp_err_t sip_media_init(void);
  17. void sip_register_task(void *pvParameters);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif /* SIP_H */