Gitiles
Code Review
Sign In
git01.mediatek.com
/
haproxy
/
cc26b13ea51982edccce7bd5aec7b58f395acd4c
/
.
/
reg-tests
/
lua
/
b00001.lua
blob: 2c2ab1dca8b57fa7cd829bcc164bf3c552886ad5 [
file
] [
log
] [
blame
]
core
.
register_service
(
"foo.http"
,
"http"
,
function
(
applet
)
core
.
msleep
(
10
)
applet
:
start_response
()
end
)
core
.
register_service
(
"foo.tcp"
,
"tcp"
,
function
(
applet
)
applet
:
send
(
"HTTP/1.1 200 OK\r\nTransfer-encoding: chunked\r\n\r\n0\r\n\r\n"
)
end
)