#ifndef SIP_H #define SIP_H #include #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 */