| 12345678910111213141516171819202122232425262728 |
- #ifndef SIP_H
- #define SIP_H
- #include <stdbool.h>
- #include "esp_err.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern volatile bool wifi_ready;
- void wifi_init(void);
- void sip_compute_response(const char *username,
- const char *realm,
- const char *password,
- const char *nonce,
- const char *uri,
- char *out_response);
- esp_err_t sip_media_init(void);
- void sip_register_task(void *pvParameters);
- #ifdef __cplusplus
- }
- #endif
- #endif /* SIP_H */
|