手机端增加历史记录功能

This commit is contained in:
wanghongen
2023-09-19 02:32:01 +08:00
parent 12d42bc000
commit 0abaa99a02
14 changed files with 331 additions and 96 deletions

View File

@@ -1,6 +1,7 @@
import 'dart:convert';
import 'dart:io';
import 'package:network_proxy/network/host_port.dart';
import 'package:network_proxy/network/http/http.dart';
class Har {
@@ -118,6 +119,7 @@ class Har {
httpRequest.response = httpResponse;
httpResponse?.request = httpRequest;
httpRequest.hostAndPort = HostAndPort.of(httpRequest.requestUrl);
return httpRequest;
}
}