tsdp_header_P.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_header_P.h
  23. * @brief SDP "p=" header (Phone Number).
  24. *
  25. * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  26. *
  27. *
  28. */
  29. #ifndef _TSDP_HEADER_P_H_
  30. #define _TSDP_HEADER_P_H_
  31. #include "tinysdp_config.h"
  32. #include "tinysdp/headers/tsdp_header.h"
  33. TSDP_BEGIN_DECLS
  34. #define TSDP_HEADER_P_VA_ARGS(value) tsdp_header_P_def_t, (const char*)value
  35. ////////////////////////////////////////////////////////////////////////////////////////////////////
  36. /// @struct
  37. ///
  38. /// @brief SDP "p=" header (Phone Number).
  39. /// The "p=" line specifies contact information for the person
  40. /// responsible for the conference. This is not necessarily the same
  41. /// person that created the conference announcement.
  42. ///
  43. ///
  44. /// @par ABNF : p= phone-number
  45. ///
  46. ////////////////////////////////////////////////////////////////////////////////////////////////////
  47. typedef struct tsdp_header_P_s {
  48. TSDP_DECLARE_HEADER;
  49. char* value;
  50. }
  51. tsdp_header_P_t;
  52. typedef tsk_list_t tsdp_headers_P_L_t;
  53. TINYSDP_API tsdp_header_P_t* tsdp_header_P_create(const char* value);
  54. TINYSDP_API tsdp_header_P_t* tsdp_header_P_create_null();
  55. TINYSDP_API tsdp_header_P_t *tsdp_header_P_parse(const char *data, tsk_size_t size);
  56. TINYSDP_GEXTERN const tsk_object_def_t *tsdp_header_P_def_t;
  57. TSDP_END_DECLS
  58. #endif /* _TSDP_HEADER_P_H_ */