Kaynağa Gözat

fix init of securechannel

Julius Pfrommer 10 yıl önce
ebeveyn
işleme
e7c21d9a8a
2 değiştirilmiş dosya ile 4 ekleme ve 3 silme
  1. 0 3
      src/server/ua_server_binary.c
  2. 4 0
      src/ua_securechannel.c

+ 0 - 3
src/server/ua_server_binary.c

@@ -170,9 +170,6 @@ 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;

+ 4 - 0
src/ua_securechannel.c

@@ -7,10 +7,14 @@
 #endif
 
 void UA_SecureChannel_init(UA_SecureChannel *channel) {
+    UA_MessageSecurityMode_init(&channel->securityMode);
+    UA_ChannelSecurityToken_init(&channel->securityToken);
     UA_AsymmetricAlgorithmSecurityHeader_init(&channel->clientAsymAlgSettings);
     UA_AsymmetricAlgorithmSecurityHeader_init(&channel->serverAsymAlgSettings);
     UA_ByteString_init(&channel->clientNonce);
     UA_ByteString_init(&channel->serverNonce);
+    channel->requestId = 0;
+    channel->sequenceNumber = 0;
     channel->connection = UA_NULL;
     channel->session    = UA_NULL;
 }