[sr-dev] git:master:368f9ccd: uac: notes about the flags of remote registration profiles

Daniel-Constantin Mierla miconda at gmail.com
Wed Jan 20 09:11:18 CET 2016


Module: kamailio
Branch: master
Commit: 368f9ccdfefb9f9261c1b32f271c1d5838cb8fff
URL: https://github.com/kamailio/kamailio/commit/368f9ccdfefb9f9261c1b32f271c1d5838cb8fff

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2016-01-20T09:10:22+01:00

uac: notes about the flags of remote registration profiles

---

Modified: modules/uac/uac_reg.c

---

Diff:  https://github.com/kamailio/kamailio/commit/368f9ccdfefb9f9261c1b32f271c1d5838cb8fff.diff
Patch: https://github.com/kamailio/kamailio/commit/368f9ccdfefb9f9261c1b32f271c1d5838cb8fff.patch

---

diff --git a/modules/uac/uac_reg.c b/modules/uac/uac_reg.c
index c0cf6e8..8ff63bd 100644
--- a/modules/uac/uac_reg.c
+++ b/modules/uac/uac_reg.c
@@ -42,11 +42,11 @@
 #include "auth_hdr.h"
 #include "uac_reg.h"
 
-#define UAC_REG_DISABLED	(1<<0)
-#define UAC_REG_ONGOING		(1<<1)
-#define UAC_REG_ONLINE		(1<<2)
-#define UAC_REG_AUTHSENT	(1<<3)
-#define UAC_REG_INIT		(1<<4)
+#define UAC_REG_DISABLED	(1<<0) /* registration disabled */
+#define UAC_REG_ONGOING		(1<<1) /* registration on progress */
+#define UAC_REG_ONLINE		(1<<2) /* registered */
+#define UAC_REG_AUTHSENT	(1<<3) /* registration with auth in progress */
+#define UAC_REG_INIT		(1<<4) /* registration initialized */
 
 #define MAX_UACH_SIZE 2048
 #define UAC_REG_GC_INTERVAL	150




More information about the sr-dev mailing list