Changeset 50437 in vbox
- Timestamp:
- Feb 13, 2014 9:49:08 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/net.c
r42528 r50437 994 994 } 995 995 996 996 #ifdef IN_GUEST 997 997 /** 998 998 * Called by the main receive function when we get a CR_MESSAGE_WRITEBACK … … 1027 1027 crMemcpy( dest_ptr, ((char *)rb) + sizeof(*rb), payload_len ); 1028 1028 } 1029 1029 #endif 1030 1030 1031 1031 /** … … 1107 1107 crError( "Can't handle read pixels" ); 1108 1108 return; 1109 #ifdef IN_GUEST 1109 1110 case CR_MESSAGE_WRITEBACK: 1110 1111 crNetRecvWriteback( &(pRealMsg->writeback) ); … … 1112 1113 case CR_MESSAGE_READBACK: 1113 1114 crNetRecvReadback( &(pRealMsg->readback), len ); 1115 #endif 1114 1116 return; 1115 1117 case CR_MESSAGE_CRUT: … … 1129 1131 char string[128]; 1130 1132 crBytesToString( string, sizeof(string), msg, len ); 1131 crError("crNetDefaultRecv: received a bad message: type=%d buf=[%s]\n"1133 WARN(("crNetDefaultRecv: received a bad message: type=%d buf=[%s]\n" 1132 1134 "Did you add a new message type and forget to tell " 1133 1135 "crNetDefaultRecv() about it?\n", 1134 msg->header.type, string ) ;1136 msg->header.type, string )); 1135 1137 } 1136 1138 }
Note:
See TracChangeset
for help on using the changeset viewer.