sip.h 517 B

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