Skip to content

Commit

Permalink
update bee
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed Apr 3, 2024
1 parent 0767c26 commit 25d66d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 3rd/bee.lua
4 changes: 2 additions & 2 deletions extension/script/common/select.lua
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function m.cleanup(fd)
end

function m.listen(t)
local fd, err = socket(t.protocol)
local fd, err = socket.create(t.protocol)
if not fd then
return nil, err
end
Expand All @@ -160,7 +160,7 @@ function m.listen(t)
end

function m.connect(t)
local fd, err = socket(t.protocol)
local fd, err = socket.create(t.protocol)
if not fd then
return nil, err
end
Expand Down

0 comments on commit 25d66d9

Please sign in to comment.