summaryrefslogtreecommitdiff
path: root/src/modules/tcp_listen.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/tcp_listen.lua')
-rw-r--r--src/modules/tcp_listen.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/tcp_listen.lua b/src/modules/tcp_listen.lua
index 9fa28ed..365e116 100644
--- a/src/modules/tcp_listen.lua
+++ b/src/modules/tcp_listen.lua
@@ -68,7 +68,7 @@ function tcp_listen:new(config, runtype)
local client_handle = {}
client_handle.fd = new_client
- client_handle.client_instance = nil
+ client_handle.client_instance = nil
client_handle.in_buffer = ""
client_handle.out_buffer = ""
function client_handle:read()
@@ -112,10 +112,10 @@ function tcp_listen:new(config, runtype)
client.name = inst.name .. "#" .. tcp.endtostring(addr)
function client:process_response() end
function client:process_timeout() end
- function client:get_read_handles()
+ function client:get_read_handles()
return { client_handle }
end
- function client:get_write_handles()
+ function client:get_write_handles()
if(client_handle.out_buffer ~= "") then
return { client_handle }
else