Parcourir la source

Merge pull request #281 from acplt/network_fix

handling partial messages properly (the server did gracfully exit on …
Sten Grüner il y a 9 ans
Parent
commit
5ed94ebfcf
2 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 2 2
      examples/networklayer_tcp.c
  2. 1 1
      src/client/ua_client.c

+ 2 - 2
examples/networklayer_tcp.c

@@ -80,7 +80,7 @@ static UA_StatusCode socket_recv(UA_Connection *connection, UA_ByteString *respo
 #ifdef _WIN32
 		if(WSAGetLastError() == WSAEINTR || WSAGetLastError() == WSAEWOULDBLOCK) {
 #else
-		if (errno == EAGAIN) {
+		if (errno == EAGAIN || errno == EWOULDBLOCK) {
 #endif
             return UA_STATUSCODE_BADCOMMUNICATIONERROR;
         } else {
@@ -397,7 +397,7 @@ static UA_Int32 ServerNetworkLayerTCP_getJobs(UA_ServerNetworkLayer *nl, UA_Job
     for(size_t i = 0; i < layer->mappingsSize && j < resultsize; i++) {
         if(!(FD_ISSET(layer->mappings[i].sockfd, &layer->fdset)))
             continue;
-        if(socket_recv(layer->mappings[i].connection, &buf, 0) == UA_STATUSCODE_GOOD) {
+        if(socket_recv(layer->mappings[i].connection, &buf, 0) == UA_STATUSCODE_GOOD && buf.length!=-1) {
             items[j].type = UA_JOBTYPE_BINARYMESSAGE;
             items[j].job.binaryMessage.message = buf;
             items[j].job.binaryMessage.connection = layer->mappings[i].connection;

+ 1 - 1
src/client/ua_client.c

@@ -256,7 +256,7 @@ static void synchronousRequest(UA_Client *client, void *request, const UA_DataTy
             respHeader->serviceResult = retval;
             return;
         }
-    } while(retval != UA_STATUSCODE_GOOD);
+    } while(retval != UA_STATUSCODE_GOOD || reply.length == -1);
 
     size_t offset = 0;
     UA_SecureConversationMessageHeader msgHeader;