Desktop Generate new root certificate (#185)

This commit is contained in:
wanghongenpin
2024-07-23 00:48:46 +08:00
parent d77efc2ab1
commit adcfc5eddc
9 changed files with 168 additions and 52 deletions

View File

@@ -71,8 +71,8 @@ abstract interface class Encoder<T> {
/// 编解码器
abstract class Codec<T> implements Decoder<T>, Encoder<T> {
static const int defaultMaxInitialLineLength = 409600;
static const int maxBodyLength = 4096000;
static const int defaultMaxInitialLineLength = 1024000; // 1M
static const int maxBodyLength = 4096000; // 4M
}
/// http编解码