tsip_headers.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 tsip_header.h
  23. * @brief List of all supported 3GPP/SIP headers.
  24. *
  25. * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  26. *
  27. */
  28. #ifndef TINYSIP_HEADERS_H
  29. #define TINYSIP_HEADERS_H
  30. #include "tinysip_config.h"
  31. #include "tinysip/headers/tsip_header_Allow.h"
  32. #include "tinysip/headers/tsip_header_Allow_Events.h"
  33. #include "tinysip/headers/tsip_header_Authorization.h"
  34. #include "tinysip/headers/tsip_header_Call_ID.h"
  35. #include "tinysip/headers/tsip_header_Contact.h"
  36. #include "tinysip/headers/tsip_header_CSeq.h"
  37. #include "tinysip/headers/tsip_header_Date.h"
  38. #include "tinysip/headers/tsip_header_Dummy.h"
  39. #include "tinysip/headers/tsip_header_Event.h"
  40. #include "tinysip/headers/tsip_header_Expires.h"
  41. #include "tinysip/headers/tsip_header_From.h"
  42. #include "tinysip/headers/tsip_header_Max_Forwards.h"
  43. #include "tinysip/headers/tsip_header_Min_Expires.h"
  44. #include "tinysip/headers/tsip_header_Min_SE.h"
  45. #include "tinysip/headers/tsip_header_Path.h"
  46. #include "tinysip/headers/tsip_header_P_Access_Network_Info.h"
  47. #include "tinysip/headers/tsip_header_P_Asserted_Identity.h"
  48. #include "tinysip/headers/tsip_header_P_Associated_URI.h"
  49. #include "tinysip/headers/tsip_header_P_Charging_Function_Addresses.h"
  50. #include "tinysip/headers/tsip_header_P_Preferred_Identity.h"
  51. #include "tinysip/headers/tsip_header_Privacy.h"
  52. #include "tinysip/headers/tsip_header_Proxy_Authenticate.h"
  53. #include "tinysip/headers/tsip_header_Proxy_Authorization.h"
  54. #include "tinysip/headers/tsip_header_Proxy_Require.h"
  55. #include "tinysip/headers/tsip_header_RAck.h"
  56. #include "tinysip/headers/tsip_header_Record_Route.h"
  57. #include "tinysip/headers/tsip_header_Refer_Sub.h"
  58. #include "tinysip/headers/tsip_header_Refer_To.h"
  59. #include "tinysip/headers/tsip_header_Referred_By.h"
  60. #include "tinysip/headers/tsip_header_Require.h"
  61. #include "tinysip/headers/tsip_header_Route.h"
  62. #include "tinysip/headers/tsip_header_RSeq.h"
  63. #include "tinysip/headers/tsip_header_Security_Client.h"
  64. #include "tinysip/headers/tsip_header_Security_Server.h"
  65. #include "tinysip/headers/tsip_header_Security_Verify.h"
  66. #include "tinysip/headers/tsip_header_Server.h"
  67. #include "tinysip/headers/tsip_header_Session_Expires.h"
  68. #include "tinysip/headers/tsip_header_Service_Route.h"
  69. #include "tinysip/headers/tsip_header_SIP_ETag.h"
  70. #include "tinysip/headers/tsip_header_SIP_If_Match.h"
  71. #include "tinysip/headers/tsip_header_Subscription_State.h"
  72. #include "tinysip/headers/tsip_header_Supported.h"
  73. #include "tinysip/headers/tsip_header_To.h"
  74. #include "tinysip/headers/tsip_header_User_Agent.h"
  75. #include "tinysip/headers/tsip_header_Via.h"
  76. #include "tinysip/headers/tsip_header_Warning.h"
  77. #include "tinysip/headers/tsip_header_WWW_Authenticate.h"
  78. TSIP_BEGIN_DECLS
  79. TSIP_END_DECLS
  80. #endif /* TINYSIP_HEADERS_H */