Module: kamailio Branch: master Commit: 5c8cfdd803e81a592bf9fdeb208b13404e96da25 URL: https://github.com/kamailio/kamailio/commit/5c8cfdd803e81a592bf9fdeb208b1340...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2024-01-24T10:23:01+01:00
core: parser - internal flag to mark delayed local replies
---
Modified: src/core/parser/msg_parser.h
---
Diff: https://github.com/kamailio/kamailio/commit/5c8cfdd803e81a592bf9fdeb208b1340... Patch: https://github.com/kamailio/kamailio/commit/5c8cfdd803e81a592bf9fdeb208b1340...
---
diff --git a/src/core/parser/msg_parser.h b/src/core/parser/msg_parser.h index 303c8c04248..45e7eb1a714 100644 --- a/src/core/parser/msg_parser.h +++ b/src/core/parser/msg_parser.h @@ -133,7 +133,8 @@ typedef enum request_method /* WARNING: Value (1 << 31) is reserved for use in kamailio * nat_traversal module (flag FL_DO_KEEPALIVE)! */
-#define FL_FINAL_REPLY (1ULL << 32) /* final reply sent */ +#define FL_FINAL_REPLY (1ULL << 32) /* local final reply sent */ +#define FL_DELAYED_REPLY (1ULL << 33) /* local reply sending delayed */
#define FL_MTU_FB_MASK (FL_MTU_TCP_FB | FL_MTU_TLS_FB | FL_MTU_SCTP_FB)