parse_body.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (C) 2008 iptelorg GmbH
  3. *
  4. * This file is part of ser, a free SIP server.
  5. *
  6. * ser is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version
  10. *
  11. * For a license to use the ser software under conditions
  12. * other than those described here, or to purchase support for this
  13. * software, please contact iptel.org by e-mail at the following addresses:
  14. * [email protected]
  15. *
  16. * ser is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. *
  25. */
  26. /*! \file
  27. * \brief Parser :: Body handling
  28. *
  29. * \ingroup parser
  30. */
  31. #ifndef PARSE_BODY_H
  32. #define PARSE_BODY_H
  33. /*! \brief Returns the pointer within the msg body to the given type/subtype,
  34. * and sets the length.
  35. * The result can be the whole msg body, or a part of a multipart body.
  36. */
  37. char *get_body_part( struct sip_msg *msg,
  38. unsigned short type, unsigned short subtype,
  39. int *len);
  40. /*! \brief Returns the pointer within the msg body to the given part matching
  41. * type/subtype, content id or content length. It sets the length.
  42. * The result can be the whole msg body, or a part of a multipart body.
  43. */
  44. char *get_body_part_by_filter(struct sip_msg *msg,
  45. unsigned short content_type,
  46. unsigned short content_subtype,
  47. char *content_id,
  48. char *content_length,
  49. int *len);
  50. #endif /* PARSE_BODY_H */