|
@@ -170,10 +170,13 @@ static void processMSG(UA_Connection *connection, UA_Server *server, const UA_By
|
|
#ifdef EXTENSION_STATELESS
|
|
#ifdef EXTENSION_STATELESS
|
|
UA_SecureChannel dummyChannel;
|
|
UA_SecureChannel dummyChannel;
|
|
UA_SecureChannel_init(&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){
|
|
if(secureChannelId == 0 || !clientChannel){
|
|
clientChannel = &dummyChannel;
|
|
clientChannel = &dummyChannel;
|
|
clientSession = &anonymousSession;
|
|
clientSession = &anonymousSession;
|
|
- }
|
|
|
|
|
|
+ }
|
|
#endif
|
|
#endif
|
|
if(!clientSession && clientChannel)
|
|
if(!clientSession && clientChannel)
|
|
clientSession = clientChannel->session;
|
|
clientSession = clientChannel->session;
|