From 368f9ccdfefb9f9261c1b32f271c1d5838cb8fff Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Tue, 19 Jan 2016 20:27:32 +0100 Subject: [PATCH] uac: notes about the flags of remote registration profiles --- modules/uac/uac_reg.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/uac/uac_reg.c b/modules/uac/uac_reg.c index c0cf6e8def4..8ff63bdef28 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