Changeset 61992 in vbox
- Timestamp:
- Jul 3, 2016 3:06:28 PM (8 years ago)
- Location:
- trunk/src/VBox/GuestHost/OpenGL/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/tcpip.c
r53726 r61992 641 641 const int sendable_len = conn->swap ? SWAP32(len) : len; 642 642 crTCPIPWriteExact( conn, &sendable_len, sizeof(len) ); 643 if ( !conn ||conn->type == CR_NO_CONNECTION)643 if (conn->type == CR_NO_CONNECTION) 644 644 return; 645 645 crTCPIPWriteExact( conn, start, len ); -
trunk/src/VBox/GuestHost/OpenGL/util/udptcpip.c
r53726 r61992 266 266 * return. */ 267 267 crTCPIPWriteExact( conn, &len_swap, sizeof(len_swap) ); 268 if ( !conn ||conn->type == CR_NO_CONNECTION ) return;268 if ( conn->type == CR_NO_CONNECTION ) return; 269 269 crTCPIPWriteExact( conn, start, len ); 270 270 return;
Note:
See TracChangeset
for help on using the changeset viewer.