Software /
code /
verse
File
util/sasl/anonymous.lua @ 464:dc05a8d6dbfb
Fix whitespace
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 16 Mar 2023 16:47:59 +0000 |
parent | 358:a8f6fd6a70ed |
line wrap: on
line source
return function (stream, name) if name == "ANONYMOUS" then return function () return coroutine.yield() == "success"; end, 0; end end