You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 8 месеца
1234567891011121314151617181920
  1. void sip_header_param_test(void);
  2. void sip_uri_parse_test(void);
  3. void sip_uri_equal_test(void);
  4. void sip_header_contact_test(void);
  5. void sip_header_via_test(void);
  6. void sip_header_cseq_test(void);
  7. void sip_header_substate_test(void);
  8. #if defined(_DEBUG) || defined(DEBUG)
  9. void sip_header_test(void)
  10. {
  11. sip_header_param_test();
  12. sip_uri_parse_test();
  13. sip_uri_equal_test();
  14. sip_header_contact_test();
  15. sip_header_via_test();
  16. sip_header_cseq_test();
  17. sip_header_substate_test();
  18. }
  19. #endif