博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
boost http响应读取
阅读量:6251 次
发布时间:2019-06-22

本文共 990 字,大约阅读时间需要 3 分钟。

响应报样例:

HTTP/1.1 201 Created

Content-Type: application/json

X-Etcd-Cluster-Id: cdf818194e3a8c32

X-Etcd-Index: 115

X-Raft-Index: 1146

X-Raft-Term: 3

Date: Tue, 17 Apr 2018 07:36:20 GMT

Content-Length: 171

 

{"action":"set","node":{"key":"/test/node/node_using","value":"10.20.6.99","expiration":"2018-04-17T07:36:30.763332719Z","ttl":10,"modifiedIndex":115,"createdIndex":115}}

 

部分代码:

http::response<http::string_body> res;

http::read(socket, buffer, res);

cout << "Result:" << res.result() << "." << res.result_int() << endl; 

cout << "Contentlen:" << res.body().size() << endl; 

cout << "has len:" << res.has_content_length() << endl; 

cout << "body:" << res.body() << endl;

输出:

Result:Created.201

Contentlen:171

has len:1

 

一开始用dynamic_body,被坑的好惨,dynamic_body还不清楚原理,想通过res.body()获取包体死活不行,改为string_body直接搞定

 

研究了半天大概了解了下boost/beast/http/message.hpp里这样定义:

深入看下去,meaage继承自:

从上面的红色测试代码可看出,可以直接获取包头的一些信息,但是如果是dynamic_body的话不能用直接通过body()获取,还没研究出用法,知道其涉及到const_buffers_type、multi_buffer等相关类

 

赶项目,先不研究,有空了再研究

转载地址:http://qdfsa.baihongyu.com/

你可能感兴趣的文章
problem-solving-with-algorithms-and-data-structure-usingpython(使用python解决算法和数据结构) -- 算法分析...
查看>>
springmvc流程
查看>>
BAT涉足汽车产业后对汽车后市场的影响是什么?
查看>>
LeetCode:Remove Nth Node From End of List
查看>>
删除链表的第 n 个结点
查看>>
drawable(1、canvas)
查看>>
Java过滤器,SpringMVC拦截器之间的一顺序点关系
查看>>
Git学习笔记(七)分支标签管理
查看>>
Vue学习计划基础笔记(四) - 事件处理
查看>>
python中的浅拷贝与赋值不同
查看>>
tensorflow安装
查看>>
【老叶茶馆】MySQL复制中slave延迟监控
查看>>
android onPause OnSavedInstance
查看>>
[PHP] - Laravel - CSRF token禁用方法
查看>>
python的序列类
查看>>
分享在MVC3.0中使用jQue“.NET研究”ry DataTable 插件
查看>>
使用Lombok插件需要注意的问题
查看>>
2018-2019-2 20165232 《网络对抗技术》 Exp6 信息搜集与漏洞扫描
查看>>
Visual Studio中“后期生成事件命令行” 中使用XCopy命令
查看>>
代码导读
查看>>