1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2026-01-03 00:53:41 +00:00

Updated Linux X86/x86-64, macOS, Windows to OpenSSL/1.1.1f

Removed debug comment
This commit is contained in:
Bryan Roe
2020-04-10 11:43:44 -07:00
parent 048ff43237
commit 68da462b2f
15 changed files with 2 additions and 2 deletions

View File

@@ -643,7 +643,7 @@ void kvm_relay_StdOutHandler(ILibProcessPipe_Process sender, char *buffer, int b
{
*bytesConsumed = 8 + (int)ntohl(((unsigned int*)(buffer))[1]);
writeHandler(buffer, *bytesConsumed, reserved);
printf("JUMBO PACKET: %d\n", *bytesConsumed);
//printf("JUMBO PACKET: %d\n", *bytesConsumed);
return;
}
}
@@ -655,7 +655,7 @@ void kvm_relay_StdOutHandler(ILibProcessPipe_Process sender, char *buffer, int b
{
*bytesConsumed = size;
writeHandler(buffer, size, reserved);
printf("Normal PACKET: %d\n", *bytesConsumed);
//printf("Normal PACKET: %d\n", *bytesConsumed);
return;
}
}