Browse Source

Add comment for different notification lists

Julius Pfrommer 7 years ago
parent
commit
74b00c9dc4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/server/ua_subscription.h

+ 2 - 2
src/server/ua_subscription.h

@@ -50,8 +50,8 @@ struct UA_MonitoredItem;
 typedef struct UA_MonitoredItem UA_MonitoredItem;
 
 typedef struct UA_Notification {
-    TAILQ_ENTRY(UA_Notification) listEntry;
-    TAILQ_ENTRY(UA_Notification) globalEntry;
+    TAILQ_ENTRY(UA_Notification) listEntry; /* Notification list for the MonitoredItem */
+    TAILQ_ENTRY(UA_Notification) globalEntry; /* Notification list for the Subscription */
 
     UA_MonitoredItem *mon;