tsdp.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright (C) 2010-2011 Mamadou Diop.
  3. *
  4. * Contact: Mamadou Diop <diopmamadou(at)doubango[dot]org>
  5. *
  6. * This file is part of Open Source Doubango Framework.
  7. *
  8. * DOUBANGO is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * DOUBANGO is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with DOUBANGO.
  20. *
  21. */
  22. /**@file tsdp.h
  23. * @brief SDP (RFC 4566) implementations with both MMTel and PoC extensions.
  24. *
  25. * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  26. *
  27. */
  28. #ifndef TINYSDP_TSDP_H
  29. #define TINYSDP_TSDP_H
  30. #include "tinysdp_config.h"
  31. #include "tinysdp/tsdp_message.h"
  32. TSDP_BEGIN_DECLS
  33. #define TSDP_CTX_CREATE() tsk_object_new(tsdp_ctx_def_t)
  34. typedef void tsdp_ctx_handle_t;
  35. TINYSDP_API const tsdp_message_t* tsdp_ctx_local_get_sdp(const tsdp_ctx_handle_t* self);
  36. TINYSDP_API int tsdp_ctx_local_create_sdp(tsdp_ctx_handle_t* self, const tsdp_message_t* local);
  37. TINYSDP_API int tsdp_ctx_local_create_sdp_2(tsdp_ctx_handle_t* self, const char* sdp, tsk_size_t size);
  38. TINYSDP_API int tsdp_ctx_local_add_headers(tsdp_ctx_handle_t* self, ...);
  39. TINYSDP_API int tsdp_ctx_local_add_media(tsdp_ctx_handle_t* self, const tsdp_header_M_t* media);
  40. TINYSDP_API int tsdp_ctx_local_add_media_2(tsdp_ctx_handle_t* self, const char* media, uint32_t port, const char* proto, ...);
  41. TINYSDP_API const tsdp_message_t* tsdp_ctx_remote_get_sdp(const tsdp_ctx_handle_t* self);
  42. TINYSDP_API const tsdp_message_t* tsdp_ctx_negotiated_get_sdp(const tsdp_ctx_handle_t* self);
  43. // 3GPP TS 24.610 Communication HOLD
  44. TINYSDP_API int tsdp_ctx_hold(tsdp_ctx_handle_t* self, const char* media);
  45. TINYSDP_API int tsdp_ctx_resume(tsdp_ctx_handle_t* self, const char* media);
  46. TINYSDP_GEXTERN const tsk_object_def_t *tsdp_ctx_def_t;
  47. TSDP_END_DECLS
  48. #endif /* TINYSDP_TSDP_H */