osip_headers.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. The oSIP library implements the Session Initiation Protocol (SIP -rfc3261-)
  3. Copyright (C) 2001-2020 Aymeric MOIZARD amoizard@antisip.com
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  15. */
  16. #ifndef _OSIP_HEADERS_H_
  17. #define _OSIP_HEADERS_H_
  18. #include <osipparser2/osip_port.h>
  19. #include <osipparser2/osip_const.h>
  20. #include <osipparser2/osip_uri.h>
  21. #include <osipparser2/headers/osip_header.h>
  22. #include <osipparser2/headers/osip_accept.h>
  23. #include <osipparser2/headers/osip_accept_encoding.h>
  24. #include <osipparser2/headers/osip_accept_language.h>
  25. #include <osipparser2/headers/osip_alert_info.h>
  26. #include <osipparser2/headers/osip_allow.h>
  27. #include <osipparser2/headers/osip_authentication_info.h>
  28. #include <osipparser2/headers/osip_authorization.h>
  29. #include <osipparser2/headers/osip_call_id.h>
  30. #include <osipparser2/headers/osip_call_info.h>
  31. #include <osipparser2/headers/osip_contact.h>
  32. #include <osipparser2/headers/osip_content_disposition.h>
  33. #include <osipparser2/headers/osip_content_encoding.h>
  34. #include <osipparser2/headers/osip_content_length.h>
  35. #include <osipparser2/headers/osip_content_type.h>
  36. #include <osipparser2/headers/osip_cseq.h>
  37. #include <osipparser2/headers/osip_error_info.h>
  38. #include <osipparser2/headers/osip_from.h>
  39. #include <osipparser2/headers/osip_mime_version.h>
  40. #include <osipparser2/headers/osip_proxy_authenticate.h>
  41. #include <osipparser2/headers/osip_proxy_authentication_info.h>
  42. #include <osipparser2/headers/osip_proxy_authorization.h>
  43. #include <osipparser2/headers/osip_record_route.h>
  44. #include <osipparser2/headers/osip_route.h>
  45. #include <osipparser2/headers/osip_to.h>
  46. #include <osipparser2/headers/osip_via.h>
  47. #include <osipparser2/headers/osip_www_authenticate.h>
  48. /**
  49. * @file osip_headers.h
  50. * @brief oSIP osip_headers definition.
  51. */
  52. /**
  53. * @defgroup oSIP_HEADERS oSIP headers definitions
  54. * @ingroup osip2_parser
  55. * @{
  56. */
  57. /** @} */
  58. #endif