123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * $Id$
- *
- *
- * Copyright (C) 2001-2003 Fhg Fokus
- *
- * 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:
- * [email protected]
- *
- * 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
- */
- #ifndef route_struct_h
- #define route_struct_h
- #define EXPR_DROP -127 /* used only by the expression and if evaluator */
- /*
- * Other important values (no macros for them yet):
- * expr true = 1
- * expr false = 0 (used only inside the expression and if evaluator)
- *
- * action continue or if used in condition true = 1
- * action drop/quit/stop script processing = 0
- * action error or if used in condition false = -1 (<0 and !=EXPR_DROP)
- *
- */
- enum { EXP_T=1, ELEM_T };
- enum { AND_OP=1, OR_OP, NOT_OP };
- enum { EQUAL_OP=10, MATCH_OP, NO_OP };
- enum { METHOD_O=1, URI_O, SRCIP_O, DSTIP_O, DEFAULT_O, ACTION_O, NUMBER_O};
- enum { FORWARD_T=1, SEND_T, DROP_T, LOG_T, ERROR_T, ROUTE_T, EXEC_T,
- SET_HOST_T, SET_HOSTPORT_T, SET_USER_T, SET_USERPASS_T,
- SET_PORT_T, SET_URI_T, IF_T, MODULE_T,
- SETFLAG_T, RESETFLAG_T, ISFLAGSET_T ,
- LEN_GT_T, PREFIX_T, STRIP_T,
- APPEND_BRANCH_T,
- REVERT_URI_T,
- FORWARD_TCP_T,
- FORWARD_UDP_T,
- SEND_TCP_T};
- enum { NOSUBTYPE=0, STRING_ST, NET_ST, NUMBER_ST, IP_ST, RE_ST, PROXY_ST,
- EXPR_ST, ACTIONS_ST, CMDF_ST, MODFIXUP_ST, URIHOST_ST, URIPORT_ST,
- MYSELF_ST };
-
- struct expr{
- int type; /* exp, exp_elem */
- int op; /* and, or, not | ==, =~ */
- int subtype;
- union {
- struct expr* expr;
- int operand;
- }l;
- union {
- struct expr* expr;
- void* param;
- int intval;
- }r;
- };
- struct action{
- int type; /* forward, drop, log, send ...*/
- int p1_type;
- int p2_type;
- int p3_type;
- union {
- int number;
- char* string;
- void* data;
- }p1, p2, p3;
- struct action* next;
- };
- struct expr* mk_exp(int op, struct expr* left, struct expr* right);
- struct expr* mk_elem(int op, int subtype, int operand, void* param);
- struct action* mk_action(int type, int p1_type, int p2_type,
- void* p1, void* p2);
- struct action* mk_action3(int type, int p1_type, int p2_type, int p3_type,
- void* p1, void* p2, void* p3);
- struct action* append_action(struct action* a, struct action* b);
- void print_action(struct action* a);
- void print_expr(struct expr* exp);
- #endif
|