瀏覽代碼

bugfix, for some reason the secureChannelId was not initialized

FlorianPalm 10 年之前
父節點
當前提交
70cdb0895b
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      src/server/ua_server_binary.c

+ 4 - 1
src/server/ua_server_binary.c

@@ -170,10 +170,13 @@ static void processMSG(UA_Connection *connection, UA_Server *server, const UA_By
 #ifdef EXTENSION_STATELESS
     UA_SecureChannel dummyChannel;
     UA_SecureChannel_init(&dummyChannel);
+    //fixme: why are the following two lines not initialized by the _init function
+    dummyChannel.securityToken.channelId = 0;
+    dummyChannel.securityToken.tokenId = 0;
     if(secureChannelId == 0 || !clientChannel){
         clientChannel = &dummyChannel;
         clientSession = &anonymousSession;
-    }
+    } 
 #endif
     if(!clientSession && clientChannel)
         clientSession = clientChannel->session;