Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
modules
/
lua
/
https.lua
blob: 9393093609b1103f938dea2e077d7d23fdb4e56f [
file
]
function
handle
(
r
)
if
r
.
is_https
then
r
:
puts
(
"yep"
)
else
r
:
puts
(
"nope"
)
end
end