ソースを参照

feature: curlServer增加contentLength返回字段

kuanglingwei 1 年間 前
コミット
78a3d2d890
1 ファイル変更1 行追加1 行削除
  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;
 }