From 0ab5bcd91d491be1a19a9bca2da2559a700ca945 Mon Sep 17 00:00:00 2001 From: glight2000 <173959153@qq.com> Date: Tue, 8 Dec 2015 20:08:28 +0800 Subject: [PATCH] Update 15.1.md --- eBook/15.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eBook/15.1.md b/eBook/15.1.md index 82cb4c1..15eb478 100644 --- a/eBook/15.1.md +++ b/eBook/15.1.md @@ -1,4 +1,4 @@ -# 15.1 网络、模版与网页应用 +# 15.1 tcp服务器 这部分我们将使用TCP协议和在14章讲到的携程范式编写一个简单的客户端-服务器应用,一个(web)服务器应用需要响应众多客户端的并发请求:go会为每一个客户端产生一个携程用来处理请求。我们需要使用net包中网络通信的功能。它包含了用于TCP/IP以及UDP协议、域名解析等方法。