| 1234567891011121314151617181920212223242526 |
- #ifndef SIP_H
- #define SIP_H
- #include <stdbool.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);
- void sip_register_task(void *pvParameters);
- #ifdef __cplusplus
- }
- #endif
- #endif /* SIP_H */
|