831faabf |
/*
* $Id$
*
* adding/removing headers or any other data chunk from a message
|
7dd0b342 |
*
|
53c7e0f1 |
* Copyright (C) 2001-2003 FhG Fokus
|
7dd0b342 |
*
* This file is part of ser, a free SIP server.
*
* ser is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* For a license to use the ser software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
* info@iptel.org
*
* ser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
f15bede1 |
*/
/* History:
* --------
* 2003-01-29 s/int/enum ... more convenient for gdb (jiri)
* 2003-03-31 added subst lumps -- they expand in ip addr, port a.s.o (andrei)
|
d1e2a411 |
* 2003-04-01 added opt (condition) lumps (andrei)
|
c55adae8 |
* 2003-04-02 added more subst lumps: SUBST_{SND,RCV}_ALL
* => ip:port;transport=proto (andrei)
|
182fea0e |
* 2005-03-22 the type of type attribute changed to enum _hdr_types_t (janakj)
|
c55adae8 |
*
|
831faabf |
*/
|
7dd0b342 |
|
831faabf |
#ifndef data_lump_h
#define data_lump_h
|
4c37101e |
#include "lump_struct.h"
#include "parser/msg_parser.h"
|
182fea0e |
#include "parser/hf.h"
|
831faabf |
/* adds a header to the end */
struct lump* append_new_lump(struct lump** list, char* new_hdr,
|
182fea0e |
int len, enum _hdr_types_t type);
|
831faabf |
/* inserts a header to the beginning */
struct lump* insert_new_lump(struct lump** list, char* new_hdr,
|
182fea0e |
int len, enum _hdr_types_t type);
|
831faabf |
struct lump* insert_new_lump_after(struct lump* after,
|
182fea0e |
char* new_hdr, int len, enum _hdr_types_t type);
|
831faabf |
struct lump* insert_new_lump_before(struct lump* before, char* new_hdr,
|
182fea0e |
int len,enum _hdr_types_t type);
|
f15bede1 |
/* substitutions (replace with ip address, port etc) */
struct lump* insert_subst_lump_after(struct lump* after, enum lump_subst subst,
|
182fea0e |
enum _hdr_types_t type);
|
f15bede1 |
struct lump* insert_subst_lump_before(struct lump* before,enum lump_subst subst,
|
182fea0e |
enum _hdr_types_t type);
|
831faabf |
|
73eec4b2 |
/* conditional lumps */
struct lump* insert_cond_lump_after(struct lump* after, enum lump_conditions c,
|
182fea0e |
enum _hdr_types_t type);
|
73eec4b2 |
struct lump* insert_cond_lump_before(struct lump* after, enum lump_conditions c,
|
182fea0e |
enum _hdr_types_t type);
|
831faabf |
/* removes an already existing header */
|
182fea0e |
struct lump* del_lump(struct sip_msg* msg, int offset, int len, enum _hdr_types_t type);
|
831faabf |
/* set an anchor */
|
182fea0e |
struct lump* anchor_lump(struct sip_msg* msg, int offset, int len, enum _hdr_types_t type);
|
831faabf |
|
4d93f145 |
/* duplicates a lump list shallowly in pkg-mem */
struct lump* dup_lump_list( struct lump *l );
/* frees a shallowly duplicated lump list */
void free_duped_lump_list(struct lump* l);
|
41f45c80 |
/* remove all non-SHMEM lumps from the list */
void del_nonshm_lump( struct lump** lump_list );
|
831faabf |
#endif
|