241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
#else
e->errNo = WSAENOTCONN;
#endif
@throw e;
}
if (SSL_write(ssl, buffer, (int)length) < 1)
@throw [OFWriteFailedException newWithClass: isa
stream: self
requestedLength: length];
}
- (size_t)pendingBytes
{
|
|
|
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
#else
e->errNo = WSAENOTCONN;
#endif
@throw e;
}
if (SSL_write(ssl, buffer, (int)length) < length)
@throw [OFWriteFailedException newWithClass: isa
stream: self
requestedLength: length];
}
- (size_t)pendingBytes
{
|