Selaa lähdekoodia

core: parser - internal flag to mark delayed local replies

Daniel-Constantin Mierla 1 vuosi sitten
vanhempi
commit
5c8cfdd803
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. 2 1
      src/core/parser/msg_parser.h

+ 2 - 1
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)