From f47700bb55cbf19f7d3f7d967bd4c4755a994db5 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Fri, 27 Mar 2020 17:52:53 +0100 Subject: [PATCH] usrloc: fixed wrong comments related to the flags fields in ucontact_t --- src/modules/usrloc/usrloc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/usrloc/usrloc.h b/src/modules/usrloc/usrloc.h index 5d071c17346..a9a0309d9d5 100644 --- a/src/modules/usrloc/usrloc.h +++ b/src/modules/usrloc/usrloc.h @@ -82,8 +82,8 @@ typedef struct ucontact { str callid; /*!< Call-ID header field of registration */ int cseq; /*!< CSeq value */ cstate_t state; /*!< State of the contact (\ref cstate) */ - unsigned int flags; /*!< Various flags (NAT, ping type, etc) */ - unsigned int cflags; /*!< Custom contact flags (from script) */ + unsigned int flags; /*!< Various internal flags (sync, etc) */ + unsigned int cflags; /*!< Custom contact flags (from script - bflags) */ str user_agent; /*!< User-Agent header field */ str uniq; /*!< Uniq header field */ struct socket_info *sock; /*!< received socket */