| 377 | |
| 378 | |
| 379 | void VGLTrans::send(char *buf, int len) |
| 380 | { |
| 381 | try |
| 382 | { |
| 383 | if(socket) socket->send(buf, len); |
| 384 | } |
| 385 | catch(...) |
| 386 | { |
| 387 | vglout.println("[VGL] ERROR: Could not send data to client. Client may have disconnected."); |
| 388 | throw; |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | |
| 393 | void VGLTrans::recv(char *buf, int len) |
no test coverage detected