aboutsummaryrefslogtreecommitdiff
path: root/src/socket.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/socket.lua')
-rw-r--r--src/socket.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/socket.lua b/src/socket.lua
index be16efe..b3a4269 100644
--- a/src/socket.lua
+++ b/src/socket.lua
@@ -5,9 +5,10 @@
5----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
6 6
7----------------------------------------------------------------------------- 7-----------------------------------------------------------------------------
8-- Load LuaSocket from dynamic library 8-- Declare module and import dependencies
9----------------------------------------------------------------------------- 9-----------------------------------------------------------------------------
10local socket = requirelib("luasocket", "luaopen_socket", getfenv(1)) 10module("socket")
11local socket = require("lsocket")
11 12
12----------------------------------------------------------------------------- 13-----------------------------------------------------------------------------
13-- Auxiliar functions 14-- Auxiliar functions