tinymsrp.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 tinymsrp.h
  23. * @brief tinyMSRP API.
  24. *
  25. * @author Mamadou Diop <diopmamadou [at) doubango (DOT) org>
  26. *
  27. */
  28. #ifndef TINYMEDIA_TINYMSRP_H
  29. #define TINYMEDIA_TINYMSRP_H
  30. /* === tinyNET (tinyNET/src) === */
  31. #include "tnet.h"
  32. /* === tinySAK (tinySAK/src)=== */
  33. #include "tsk.h"
  34. #include "tmsrp.h"
  35. #include "tinymsrp/tmsrp_message.h"
  36. #include "tinymsrp/tmsrp_event.h"
  37. #include "tinymsrp/tmsrp_uri.h"
  38. #include "tinymsrp/headers/tmsrp_header_Dummy.h"
  39. #include "tinymsrp/headers/tmsrp_header_Authentication-Info.h"
  40. #include "tinymsrp/headers/tmsrp_header_Authorization.h"
  41. #include "tinymsrp/headers/tmsrp_header_Byte-Range.h"
  42. #include "tinymsrp/headers/tmsrp_header_Expires.h"
  43. #include "tinymsrp/headers/tmsrp_header_Failure-Report.h"
  44. #include "tinymsrp/headers/tmsrp_header_From-Path.h"
  45. #include "tinymsrp/headers/tmsrp_header_Max-Expires.h"
  46. #include "tinymsrp/headers/tmsrp_header_Message-ID.h"
  47. #include "tinymsrp/headers/tmsrp_header_Min-Expires.h"
  48. #include "tinymsrp/headers/tmsrp_header_Status.h"
  49. #include "tinymsrp/headers/tmsrp_header_Success-Report.h"
  50. #include "tinymsrp/headers/tmsrp_header_To-Path.h"
  51. #include "tinymsrp/headers/tmsrp_header_Use-Path.h"
  52. #include "tinymsrp/headers/tmsrp_header_WWW-Authenticate.h"
  53. #include "tinymsrp/parsers/tmsrp_parser_message.h"
  54. #include "tinymsrp/parsers/tmsrp_parser_uri.h"
  55. #include "tinymsrp/session/tmsrp_config.h"
  56. #include "tinymsrp/session/tmsrp_data.h"
  57. #include "tinymsrp/session/tmsrp_receiver.h"
  58. #include "tinymsrp/session/tmsrp_sender.h"
  59. #endif /* TINYMEDIA_TINYMSRP_H */