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.

10 mesi fa
1234567891011121314151617181920212223242526
  1. #ifndef _sip_uas_h_
  2. #define _sip_uas_h_
  3. #include "cstring.h"
  4. #include "sip-agent.h"
  5. #if defined(__cplusplus)
  6. extern "C" {
  7. #endif
  8. struct sip_uas_transaction_t;
  9. int sip_uas_add_header(struct sip_uas_transaction_t* t, const char* name, const char* value);
  10. int sip_uas_add_header_int(struct sip_uas_transaction_t* t, const char* name, int value);
  11. int sip_uas_reply(struct sip_uas_transaction_t* t, int code, const void* data, int bytes, void* param);
  12. int sip_uas_transaction_addref(struct sip_uas_transaction_t* t);
  13. int sip_uas_transaction_release(struct sip_uas_transaction_t* t);
  14. int sip_uas_transaction_ondestroy(struct sip_uas_transaction_t* t, sip_transaction_ondestroy ondestroy, void* param);
  15. #if defined(__cplusplus)
  16. }
  17. #endif
  18. #endif /* !_sip_uas_h_ */