Просмотр исходного кода

bugfix, for some reason the secureChannelId was not initialized

FlorianPalm лет назад: 10
Родитель
Сommit
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;