tmsrp_header_Status.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright (C) 2009 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 tmsrp_header_Status.h
  23. * @brief MSRP 'Status' header.
  24. *
  25. * @author Mamadou Diop <diopmamadou [at) doubango (DOT) org>
  26. *
  27. */
  28. #ifndef _TMSRP_HEADER_STATUS_H_
  29. #define _TMSRP_HEADER_STATUS_H_
  30. #include "tinymsrp_config.h"
  31. #include "tinymsrp/headers/tmsrp_header.h"
  32. TMSRP_BEGIN_DECLS
  33. #define TMSRP_HEADER_STATUS_VA_ARGS(namespace, code, reason) tmsrp_header_Status_def_t, (short)namespace, (short)code, (const char*)reason
  34. ////////////////////////////////////////////////////////////////////////////////////////////////////
  35. /// @struct
  36. ///
  37. /// @brief MSRP 'Status' header.
  38. ///
  39. /// @par ABNF : Status = "Status:" SP namespace SP status-code [SP text-reason]
  40. /// namespace = 3(DIGIT) ; "000" for all codes defined in RFC 4975
  41. /// text-reason = utf8text
  42. ///
  43. ////////////////////////////////////////////////////////////////////////////////////////////////////
  44. typedef struct tmsrp_header_Status_s {
  45. TMSRP_DECLARE_HEADER;
  46. short _namespace;
  47. short code;
  48. char* reason;
  49. }
  50. tmsrp_header_Status_t;
  51. typedef tsk_list_t tmsrp_headers_Status_L_t;
  52. TINYMSRP_API tmsrp_header_Status_t* tmsrp_header_Status_create(short _namespace, short code, const char* reason);
  53. TINYMSRP_API tmsrp_header_Status_t* tmsrp_header_Status_create_null();
  54. TINYMSRP_API tmsrp_header_Status_t *tmsrp_header_Status_parse(const char *data, tsk_size_t size);
  55. TINYMSRP_GEXTERN const tsk_object_def_t *tmsrp_header_Status_def_t;
  56. TMSRP_END_DECLS
  57. #endif /* _TMSRP_HEADER_STATUS_H_ */