ソースを参照

Add comment for different notification lists

Julius Pfrommer 7 年 前
コミット
74b00c9dc4
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  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;