浏览代码

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;
 }