tsdp_header_R.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_R.h
  23. * @brief SDP "r=" header (Repeat Times).
  24. *
  25. * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  26. *
  27. *
  28. */
  29. #ifndef _TSDP_HEADER_R_H_
  30. #define _TSDP_HEADER_R_H_
  31. #include "tinysdp_config.h"
  32. #include "tinysdp/headers/tsdp_header.h"
  33. #include "tsk_string.h"
  34. TSDP_BEGIN_DECLS
  35. #define TSDP_HEADER_R_VA_ARGS() tsdp_header_R_def_t
  36. ////////////////////////////////////////////////////////////////////////////////////////////////////
  37. /// @struct
  38. ///
  39. /// @brief SDP "r=" header (Repeat Times).
  40. ///
  41. /// The "e=" line "r=" fields specify repeat times for a session.
  42. ///
  43. /// @par ABNF : r= repeat-interval SP typed-time 1*(SP typed-time)
  44. /// repeat-interval = POS-DIGIT *DIGIT [fixed-len-time-unit]
  45. /// typed-time = 1*DIGIT [fixed-len-time-unit]
  46. /// 1*DIGIT [fixed-len-time-unit]
  47. /// fixed-len-time-unit = "d" / "h" / "m" / "s"
  48. ///
  49. ////////////////////////////////////////////////////////////////////////////////////////////////////
  50. typedef struct tsdp_header_R_s {
  51. TSDP_DECLARE_HEADER;
  52. char* repeat_interval;
  53. char* typed_time;
  54. tsk_strings_L_t* typed_times;
  55. }
  56. tsdp_header_R_t;
  57. typedef tsk_list_t tsdp_headers_R_L_t;
  58. TINYSDP_API tsdp_header_R_t* tsdp_header_R_create();
  59. TINYSDP_API tsdp_header_R_t* tsdp_header_R_create_null();
  60. TINYSDP_API tsdp_header_R_t *tsdp_header_R_parse(const char *data, tsk_size_t size);
  61. TINYSDP_GEXTERN const tsk_object_def_t *tsdp_header_R_def_t;
  62. TSDP_END_DECLS
  63. #endif /* _TSDP_HEADER_R_H_ */