Differences From Artifact [df8e40fa8b]:
- File src/OFHTTPServer.m — part of check-in [fc161d1948] at 2023-05-21 11:04:32 on branch trunk — OFTCPSocket: Return socket address bound to (user: js, size: 20125) [annotate] [blame] [check-ins using] [more...]
To Artifact [ab884b4ab8]:
- File
src/OFHTTPServer.m
— part of check-in
[a61e0594b4]
at
2023-10-15 12:32:29
on branch trunk
— Add -[OFStream lowlevelIsAtEndOfStream]
This allows for a much cleaner solution to avoid the internal read
buffer of e.g. a TLS connection never being processed while waiting for
a delimiter. (user: js, size: 20102) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
731 732 733 734 735 736 737 | objc_autoreleasePoolPop(pool); return 0; } } | | | | 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 |
objc_autoreleasePoolPop(pool);
return 0;
}
}
- (bool)lowlevelHasDataInReadBuffer
{
return _socket.hasDataInReadBuffer;
}
- (int)fileDescriptorForReading
{
return _socket.fileDescriptorForReading;
}
|
| ︙ | ︙ |