8 Star 7 Fork 3

fulinux/lua

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
download.lua 608 Bytes
一键复制 编辑 原始数据 按行查看 历史
fulinux 提交于 2015-09-21 01:52 . add some lua files
#!/usr/bin/lua
local socket = require("socket")
local host = "www.baidu.com"
local file = "/"
-- 创建一个 TCP 连接,连接到 HTTP 连接的标准端口 -- 80 端口上
local sock = assert(socket.connect(host, 80))
sock:send("GET " .. file .. " HTTP/1.0\r\n\r\n")
repeat
-- 以 1K 的字节块来接收数据,并把接收到字节块输出来
local chunk, status, partial = sock:receive(1024)
print(chunk or partial)
until status ~= "closed"
-- 关闭 TCP 连接
sock:close()
local http = require("socket.http")
local response = http.request("http://www.baidu.com/")
print(response)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Lua
1
https://gitee.com/fulinux/lua.git
git@gitee.com:fulinux/lua.git
fulinux
lua
lua
master

搜索帮助