Skip to content

Latest commit

 

History

History
 
 

http

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

http连接处理类

根据状态转移,通过主从状态机封装了http连接类。其中,主状态机在内部调用从状态机,从状态机将处理状态和数据传给主状态机

  • 客户端发出http连接请求
  • 从状态机读取数据,更新自身状态和接收数据,传给主状态机
  • 主状态机根据从状态机状态,更新自身状态,决定响应请求还是继续读取

模块详解

请关注公众号 “两猿社”.

  • 选择底部菜单栏:互联网 -> C++技术 -> 练手项目 -> 04 http连接处理(上)
  • 选择底部菜单栏:互联网 -> C++技术 -> 练手项目 -> 05 http连接处理(中)
  • 选择底部菜单栏:互联网 -> C++技术 -> 练手项目 -> 06 http连接处理(下)