Browse Source

feature: curlServer增加contentLength返回字段

kuanglingwei 1 year ago
parent
commit
78a3d2d890
1 changed files with 1 additions and 1 deletions
  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;
 }