- 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語言程序設計教程
- 數(shù)字媒體應用教程
- Software Defined Networking with OpenFlow
- Learning Python Design Patterns(Second Edition)
- Python Network Programming Cookbook(Second Edition)
- Hands-On RESTful Web Services with Go
- 學Python也可以這么有趣
- Mastering JavaScript High Performance
- UML 基礎與 Rose 建模案例(第3版)
- RSpec Essentials
- Java編程指南:語法基礎、面向對象、函數(shù)式編程與項目實戰(zhàn)
- ANSYS FLUENT 16.0超級學習手冊
- HTML5+CSS+JavaScript深入學習實錄
- Web程序設計與架構
- Perl 6 Deep Dive