Browse Source

feature: curlServer增加contentLength返回字段

kuanglingwei 1 năm trước cách đây
mục cha
commit
78a3d2d890
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      curl.proto

+ 1 - 1
curl.proto

@@ -23,7 +23,7 @@ message CurlRequest {
 // response
 message CurlReply {
   int32 code = 1;
-  string body = 2;
+  int64 contentLength = 2;
   string error = 3;
 }