画中画窗口

This commit is contained in:
wanghongenpin
2024-01-10 13:02:41 +08:00
parent 6f2966db1d
commit b8accd4302
26 changed files with 512 additions and 148 deletions

View File

@@ -101,6 +101,9 @@ abstract class HttpCodec<T extends HttpMessage> implements Codec<T> {
//请求行
if (_state == State.readInitial) {
init();
if (data.readableBytes() < 128) {
return result;
}
var initialLine = _readInitialLine(data);
result.data = createMessage(initialLine);
_state = State.readHeader;