- Call `openCheck()`  remaining methods
This commit is contained in:
Tristan B. Velloza Kildaire 2023-04-29 18:25:17 +02:00
parent 347473df31
commit 2c43e0ea53
1 changed files with 10 additions and 1 deletions

View File

@ -41,12 +41,18 @@ public class CryptClient : RiverStream
public override ulong read(byte[] toArray)
{
/* Ensure the TLS session is active */
openCheck();
// TODO: Implement me
return 0;
}
public override ulong readFully(byte[] toArray)
{
/* Ensure the TLS session is active */
openCheck();
// TODO: Implement me
return 0;
}
@ -55,7 +61,7 @@ public class CryptClient : RiverStream
{
/* Ensure the TLS session is active */
openCheck();
// TODO: Implement me
// botanClient.send()
@ -66,6 +72,9 @@ public class CryptClient : RiverStream
public override ulong writeFully(byte[] fromArray)
{
/* Ensure the TLS session is active */
openCheck();
// TODO: Implement me
return 0;
}