From 24afe136361402f49f62aadc4401706c77a6b253 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Fri, 13 Dec 2019 16:07:55 +0100 Subject: [PATCH] core: internal flag to mark sip request if there is a route for next hop --- src/core/parser/msg_parser.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/parser/msg_parser.h b/src/core/parser/msg_parser.h index 0b0f5044eda..f3ea088eb87 100644 --- a/src/core/parser/msg_parser.h +++ b/src/core/parser/msg_parser.h @@ -109,6 +109,7 @@ typedef enum request_method { #define FL_USE_XAVP_VIA_FIELDS (1<<22) /*!< use xavp fields for local via attrs */ #define FL_MSG_NOREPLY (1<<23) /*!< do not send sip reply for request */ #define FL_SIPTRACE (1<<24) /*!< message to be traced in stateless replies */ +#define FL_ROUTE_ADDR (1<<25) /*!< request has Route address for next hop */ /* WARNING: Value (1 << 28) is temporarily reserved for use in kamailio call_control * module (flag FL_USE_CALL_CONTROL )! */