- Boost.Asio C++ Network Programming Cookbook
- Dmytro Radchuk
- 142字
- 2021-07-23 14:44:25
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "In Boost.Asio a passive socket is represented by the asio::ip::tcp::acceptor
class."
A block of code is set as follows:
std::shared_ptr<boost::asio::ip::tcp::socket> m_sock; boost::asio::streambuf m_request; std::map<std::string, std::string> m_request_headers; std::string m_requested_resource;
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
std::shared_ptr<boost::asio::ip::tcp::socket> m_sock;
boost::asio::streambuf m_request;
std::map<std::string, std::string> m_request_headers;
std::string m_requested_resource;
New terms and important words are shown in bold.
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
推薦閱讀
- C#高級(jí)編程(第10版) C# 6 & .NET Core 1.0 (.NET開(kāi)發(fā)經(jīng)典名著)
- Java系統(tǒng)分析與架構(gòu)設(shè)計(jì)
- MariaDB High Performance
- Windows Presentation Foundation Development Cookbook
- R Deep Learning Cookbook
- Django實(shí)戰(zhàn):Python Web典型模塊與項(xiàng)目開(kāi)發(fā)
- Cocos2d-x by Example:Beginner's Guide(Second Edition)
- 監(jiān)控的藝術(shù):云原生時(shí)代的監(jiān)控框架
- Learning Bootstrap 4(Second Edition)
- R語(yǔ)言數(shù)據(jù)挖掘:實(shí)用項(xiàng)目解析
- OpenCV 3.0 Computer Vision with Java
- Learning D
- Learning Shiny
- Scratch編程從入門到精通
- Android熱門應(yīng)用開(kāi)發(fā)詳解