Module: kamailio Branch: master Commit: 368f9ccdfefb9f9261c1b32f271c1d5838cb8fff URL: https://github.com/kamailio/kamailio/commit/368f9ccdfefb9f9261c1b32f271c1d5838cb8fff
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> 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 _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
