From 2c1cabee7530e0b92fc46481bf36d0b71b4cb779 Mon Sep 17 00:00:00 2001 From: funshine Date: Mon, 13 Oct 2014 21:03:48 +0800 Subject: [PATCH] add readme --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c5ecdfea..3583dc23 100644 --- a/README.md +++ b/README.md @@ -205,18 +205,16 @@ net module --------------- 常量:net.TCP, net.UDP -net.createServer(type, secure) +net.createServer(type) 描述:建立一个服务器 type:net.TCP或 net.UDP - secure:true 或者 false,表示是否为安全连接 返回:net.server子模块 -net.createConnection(type, secure) +net.createConnection(type) 描述:建立一个客户端 type:net.TCP或 net.UDP - secure:true 或者 false,表示是否为安全连接 返回:net.socket子模块 net.server module