From: Date: November 6 2006 2:50pm Subject: bk commit into 5.0 tree (jonas:1.2266) BUG#24011 List-Archive: http://lists.mysql.com/commits/14882 X-Bug: 24011 Message-Id: <20061106135049.660F86005E0@perch.ndb.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of jonas. When jonas does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2006-11-06 14:50:45+01:00, jonas@stripped +1 -0 ndb - bug#24011 ndb/src/common/util/socket_io.cpp@stripped, 2006-11-06 14:50:44+01:00, jonas@stripped +51 -33 Fix problem with cut sockmessages # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: jonas # Host: perch.ndb.mysql.com # Root: /home/jonas/src/50-work --- 1.8/ndb/src/common/util/socket_io.cpp 2006-11-06 14:50:49 +01:00 +++ 1.9/ndb/src/common/util/socket_io.cpp 2006-11-06 14:50:49 +01:00 @@ -53,10 +53,6 @@ if(buflen <= 1) return 0; - int sock_flags= fcntl(socket, F_GETFL); - if(fcntl(socket, F_SETFL, sock_flags | O_NONBLOCK) == -1) - return -1; - fd_set readset; FD_ZERO(&readset); FD_SET(socket, &readset); @@ -71,43 +67,65 @@ } if(selectRes == -1){ - fcntl(socket, F_SETFL, sock_flags); return -1; } - buf[0] = 0; - const int t = recv(socket, buf, buflen, MSG_PEEK); - - if(t < 1) + char* ptr = buf; + int len = buflen; + do { - fcntl(socket, F_SETFL, sock_flags); - return -1; - } + int t; + while((t = recv(socket, ptr, len, MSG_PEEK)) == -1 && errno == EINTR); + + if(t < 1) + { + return -1; + } - for(int i=0; i< t;i++) - { - if(buf[i] == '\n'){ - recv(socket, buf, i+1, 0); - buf[i] = 0; - - if(i > 0 && buf[i-1] == '\r'){ - i--; - buf[i] = 0; + + for(int i = 0; i 0); + + return -1; } extern "C"