<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="">示例</string>
    <string name="">这些程序的源码和编译脚本存放在 [path_link example example] 目录里。</string>
    <string name="">客户端</string>
    <string name="">这些 HTTP 客户端会向命令行指定的服务器发送 GET 请求，并输出返回结果。爬取客户端会异步抓取排名前 10000 的站点的文档根目录，可用于评估程序的健壮性。所有异步客户端都支持超时设置。</string>
    <string name="25">HTTP 同步</string>
    <string name="">[path_link example/http/client/sync/http_client_sync.cpp http_client_sync.cpp]</string>
    <string name="">[path_link example/http/client/sync-ssl/http_client_sync_ssl.cpp http_client_sync_ssl.cpp]</string>
    <string name="25">HTTP 异步</string>
    <string name="">[path_link example/http/client/async/http_client_async.cpp http_client_async.cpp]</string>
    <string name="">[path_link example/http/client/async-ssl/http_client_async_ssl.cpp http_client_async_ssl.cpp]</string>
    <string name="25">HTTP 异步 Unix 域套接字</string>
    <string name="">[path_link example/http/client/async-local/http_client_async_local.cpp http_client_async_local.cpp]</string>
    <string name="">使用 __system_executor__ 的 HTTP 异步模式</string>
    <string name="">[path_link example/http/client/async-ssl-system-executor/http_client_async_ssl_system_executor.cpp http_client_async_ssl_system_executor.cpp]</string>
    <string name="25">HTTP 协程</string>
    <string name="">[path_link example/http/client/coro/http_client_coro.cpp http_client_coro.cpp]</string>
    <string name="">[path_link example/http/client/coro-ssl/http_client_coro_ssl.cpp http_client_coro_ssl.cpp]</string>
    <string name="">HTTP C++20 协程</string>
    <string name="">[path_link example/http/client/awaitable/http_client_awaitable.cpp http_client_awaitable.cpp]</string>
    <string name="">[path_link example/http/client/awaitable-ssl/http_client_awaitable_ssl.cpp http_client_awaitable_ssl.cpp]</string>
    <string name="">HTTP 爬取（异步）</string>
    <string name="">[path_link example/http/client/crawl/http_crawl.cpp http_crawl.cpp]</string>
    <string name="">HTTP json_body（同步）</string>
    <string name="">[path_link example/http/client/body/json_body.hpp json_body.hpp] [path_link example/http/client/body/json_client.cpp json_client.cpp]</string>
    <string name="">HTTP client for all methods (synchronous)</string>
    <string name="">[path_link example/http/client/methods/http_client_methods.cpp http_client_methods.cpp]</string>
    <string name="">这些 WebSocket 客户端会先连接服务器，发一条消息，收到回复后打印结果，最后断开连接。所有异步客户端都支持设置超时时间。</string>
    <string name="72">WebSocket 同步</string>
    <string name="">[path_link example/websocket/client/sync/websocket_client_sync.cpp websocket_client_sync.cpp]</string>
    <string name="">[path_link example/websocket/client/sync-ssl/websocket_client_sync_ssl.cpp websocket_client_sync_ssl.cpp]</string>
    <string name="72">WebSocket 异步</string>
    <string name="">[path_link example/websocket/client/async/websocket_client_async.cpp websocket_client_async.cpp]</string>
    <string name="">[path_link example/websocket/client/async-ssl/websocket_client_async_ssl.cpp websocket_client_async_ssl.cpp]</string>
    <string name="72">WebSocket 异步 Unix 域套接字</string>
    <string name="">[path_link example/websocket/client/async-local/websocket_client_async_local.cpp websocket_client_async_local.cpp]</string>
    <string name="">使用 __system_executor__ 的 WebSocket 异步模式</string>
    <string name="">[path_link example/websocket/client/async-ssl-system-executor/websocket_client_async_ssl_system_executor.cpp websocket_client_async_ssl_system_executor.cpp]</string>
    <string name="72">WebSocket 协程</string>
    <string name="">[path_link example/websocket/client/coro/websocket_client_coro.cpp websocket_client_coro.cpp]</string>
    <string name="">[path_link example/websocket/client/coro-ssl/websocket_client_coro_ssl.cpp websocket_client_coro_ssl.cpp]</string>
    <string name="">WebSocket C++20 协程</string>
    <string name="">[path_link example/websocket/client/awaitable/websocket_client_awaitable.cpp websocket_client_awaitable.cpp]</string>
    <string name="">服务器端</string>
    <string name="">这些 HTTP 服务器会从命令行指定的根目录中读取文件并提供给客户端。所有异步服务器都支持设置超时时间。</string>
    <string name="109">HTTP 同步</string>
    <string name="">[path_link example/http/server/sync/http_server_sync.cpp http_server_sync.cpp]</string>
    <string name="">[path_link example/http/server/sync-ssl/http_server_sync_ssl.cpp http_server_sync_ssl.cpp]</string>
    <string name="109">HTTP 同步</string>
    <string name="">[path_link example/http/server/async/http_server_async.cpp http_server_async.cpp]</string>
    <string name="">[path_link example/http/server/async-ssl/http_server_async_ssl.cpp http_server_async_ssl.cpp]</string>
    <string name="109">HTTP 异步 Unix 域套接字</string>
    <string name="">[path_link example/http/server/async-local/http_server_async_local.cpp http_server_async_local.cpp]</string>
    <string name="109">HTTP 协程</string>
    <string name="">[path_link example/http/server/coro/http_server_coro.cpp http_server_coro.cpp]</string>
    <string name="">[path_link example/http/server/coro-ssl/http_server_coro_ssl.cpp http_server_coro_ssl.cpp]</string>
    <string name="">HTTP 无栈协程</string>
    <string name="">[path_link example/http/server/stackless/http_server_stackless.cpp http_server_stackless.cpp]</string>
    <string name="">[path_link example/http/server/stackless-ssl/http_server_stackless_ssl.cpp http_server_stackless_ssl.cpp]</string>
    <string name="">HTTP C++20 协程</string>
    <string name="">[path_link example/http/server/awaitable/http_server_awaitable.cpp http_server_awaitable.cpp]</string>
    <string name="">HTTP 快速模式（速度优先）</string>
    <string name="">[path_link example/http/server/fast/http_server_fast.cpp http_server_fast.cpp]</string>
    <string name="">HTTP 精简模式（空间优先）</string>
    <string name="">[path_link example/http/server/small/http_server_small.cpp http_server_small.cpp]</string>
    <string name="">HTTP 灵活模式（普通 + SSL）</string>
    <string name="">[path_link example/http/server/flex/http_server_flex.cpp http_server_flex.cpp]</string>
    <string name="">这些 WebSocket 服务器会把收到的任何消息原样返回，并且保持会话不断开，直到客户端主动断开为止。所有异步服务器都支持设置超时时间。</string>
    <string name="152">WebSocket 同步</string>
    <string name="">[path_link example/websocket/server/sync/websocket_server_sync.cpp websocket_server_sync.cpp]</string>
    <string name="">[path_link example/websocket/server/sync-ssl/websocket_server_sync_ssl.cpp websocket_server_sync_ssl.cpp]</string>
    <string name="152">WebSocket 异步</string>
    <string name="">[path_link example/websocket/server/async/websocket_server_async.cpp websocket_server_async.cpp]</string>
    <string name="">[path_link example/websocket/server/async-ssl/websocket_server_async_ssl.cpp websocket_server_async_ssl.cpp]</string>
    <string name="152">WebSocket 异步 Unix 域套接字</string>
    <string name="">[path_link example/websocket/server/async-local/websocket_server_async_local.cpp websocket_server_async_local.cpp]</string>
    <string name="152">WebSocket 协程</string>
    <string name="">[path_link example/websocket/server/coro/websocket_server_coro.cpp websocket_server_coro.cpp]</string>
    <string name="">[path_link example/websocket/server/coro-ssl/websocket_server_coro_ssl.cpp websocket_server_coro_ssl.cpp]</string>
    <string name="">WebSocket 无栈协程</string>
    <string name="">[path_link example/websocket/server/stackless/websocket_server_stackless.cpp websocket_server_stackless.cpp]</string>
    <string name="">[path_link example/websocket/server/stackless-ssl/websocket_server_stackless_ssl.cpp websocket_server_stackless_ssl.cpp]</string>
    <string name="">WebSocket C++20 协程</string>
    <string name="">[path_link example/websocket/server/awaitable/websocket_server_awaitable.cpp websocket_server_awaitable.cpp]</string>
    <string name="">WebSocket 快速模式（适用于基准测试）</string>
    <string name="">[path_link example/websocket/server/fast/websocket_server_fast.cpp websocket_server_fast.cpp]</string>
    <string name="">服务器端（进阶篇）</string>
    <string name="">这些服务器在同一端口上同时提供 HTTP 和 WebSocket 服务，并展示了高级功能的实现方式。</string>
    <string name="">进阶篇</string>
    <string name="">[itemized_list [Timeouts] [Multi-threaded] [HTTP pipelining] [Parser-oriented HTTP reading] [Dual protocols: HTTP and WebSocket] [Clean exit via SIGINT (CTRL+C) or SIGTERM (kill)] ]</string>
    <string name="">[path_link example/advanced/server/advanced_server.cpp advanced_server.cpp]</string>
    <string name="">进阶篇，灵活模式（普通 + SSL）</string>
    <string name="">[itemized_list [Timeouts] [Multi-threaded] [HTTP pipelining] [Parser-oriented HTTP reading] [Dual protocols: HTTP and WebSocket] [Flexible ports: plain and SSL on the same port] [Clean exit via SIGINT (CTRL+C) or SIGTERM (kill)] ]</string>
    <string name="">[path_link example/advanced/server-flex/advanced_server_flex.cpp advanced_server_flex.cpp]</string>
    <string name="">进阶篇，灵活模式（普通 + SSL）支持可等待操作</string>
    <string name="">[itemized_list [Timeouts] [Multi-threaded] [HTTP pipelining] [Parser-oriented HTTP reading] [Dual protocols: HTTP and WebSocket] [Flexible ports: plain and SSL on the same port] [Clean exit via SIGINT (CTRL+C) or SIGTERM (kill)] [Usage of cancellation_signals] ]</string>
    <string name="">[path_link example/advanced/server-flex-awaitable/advanced_server_flex_awaitable.cpp advanced_server_flex_awaitable.cpp]</string>
    <string name="">聊天服务器，多线程版</string>
    <string name="">[itemized_list [Multi-threaded] [Broadcasting Messages] [Multi-user Chat Server] [JavaScript Browser Client] [Parser-oriented HTTP reading] [Dual protocols: HTTP and WebSocket] [Clean exit via SIGINT (CTRL+C) or SIGTERM (kill)] ]</string>
    <string name="193">[path_link example/websocket/server/chat-multi chat-multi]</string>
    <string name="">聊天服务器 __视频__</string>
    <string name="">这个示例展示了一个 WebSocket 聊天服务器，支持多个用户同时连接并参与实时群聊。它附带了一个用 JavaScript 和 HTML5 实现的小型前端界面，可以在任意浏览器中运行。该示例还配有一小时的演讲视频，内容包括网络概念讲解，以及客户端和服务器实现细节的深度剖析。该演讲于 [@https://cppcon.org CppCon 2018] 上发布。Beast 示例中的源码相比原始程序有所改进。</string>
    <string name="">WebSocket 聊天服务器与 JavaScript 客户端</string>
    <string name="">组件</string>
    <string name="">特性</string>
    <string name="">源码</string>
    <string name="">服务器</string>
    <string name="">[itemized_list [C++] [Timeouts] [Multi-threaded] [Broadcast to multiple peers] [Dual protocols: HTTP and WebSocket] [Clean exit via SIGINT (CTRL+C) or SIGTERM (kill)] ]</string>
    <string name="260">[path_link example/websocket/server/chat-multi chat-multi]</string>
    <string name="">客户端</string>
    <string name="">[itemized_list [JavaScript / HTML5] [Runs in the browser] [Delivered by the server] [Only 60 lines total including UI] [Completely portable graphics] ]</string>
    <string name="">[path_link example/websocket/server/chat-multi/chat_client.html chat_client.html]</string>
</resources>
