You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/parser/parse_sipifmatch.h

31 lines
447 B

/*! \file
* \brief Parser :: Parse if-match header
*
* \ingroup parser
*/
#ifndef PARSE_SIPIFMATCH_H
#define PARSE_SIPIFMATCH_H
#include "../str.h"
#include "hf.h"
typedef struct etag {
str text; /* Original string representation */
} etag_t;
/*! \brief
* Parse Sipifmatch HF body
*/
int parse_sipifmatch(struct hdr_field* _h);
/*! \brief
* Release memory
*/
void free_sipifmatch(str** _e);
#endif /* PARSE_SIPIFMATCH_H */