You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -183,19 +182,27 @@ public override (int ret, bool wantMore) Read (byte[] buffer, int offset, int co
183
182
if(lastException!=null)
184
183
throwlastException;
185
184
186
-
if(errorState.code==UnityTls.unitytls_error_code.UNITYTLS_USER_WOULD_BLOCK||numBytesRead<count)// In contrast to some other APIs (like Apple security) WOULD_BLOCK is not set if we did a partial read
@@ -206,14 +213,23 @@ public override (int ret, bool wantMore) Write (byte[] buffer, int offset, int c
206
213
if(lastException!=null)
207
214
throwlastException;
208
215
209
-
if(errorState.code==UnityTls.unitytls_error_code.UNITYTLS_USER_WOULD_BLOCK||numBytesWritten<count)// In contrast to some other APIs (like Apple security) WOULD_BLOCK is not set if we did a partial write
0 commit comments