tsdp_header_V.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_V.h
  23. * @brief SDP "v=" header (Protocol Version).
  24. *
  25. * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  26. *
  27. */
  28. #ifndef _TSDP_HEADER_V_H_
  29. #define _TSDP_HEADER_V_H_
  30. #include "tinysdp_config.h"
  31. #include "tinysdp/headers/tsdp_header.h"
  32. TSDP_BEGIN_DECLS
  33. #define TSDP_HEADER_V_VA_ARGS(version) tsdp_header_V_def_t, (int32_t)version
  34. #define TSDP_HEADER_V_DEFAULT 0
  35. ////////////////////////////////////////////////////////////////////////////////////////////////////
  36. /// @struct
  37. ///
  38. /// @brief SDP "v=" header (Protocol Version).
  39. /// The "v=" field gives the version of the Session Description Protocol.
  40. /// This memo (RFC 4566) defines version 0. There is no minor version number.
  41. ///
  42. /// @par ABNF : v=1*DIGIT
  43. ///
  44. ////////////////////////////////////////////////////////////////////////////////////////////////////
  45. typedef struct tsdp_header_V_s {
  46. TSDP_DECLARE_HEADER;
  47. int32_t version;
  48. }
  49. tsdp_header_V_t;
  50. typedef tsk_list_t tsdp_headers_V_L_t;
  51. TINYSDP_API tsdp_header_V_t* tsdp_header_V_create(int32_t version);
  52. TINYSDP_API tsdp_header_V_t* tsdp_header_V_create_null();
  53. TINYSDP_API tsdp_header_V_t *tsdp_header_V_parse(const char *data, tsk_size_t size);
  54. TINYSDP_GEXTERN const tsk_object_def_t *tsdp_header_V_def_t;
  55. TSDP_END_DECLS
  56. #endif /* _TSDP_HEADER_V_H_ */