Software /
code /
verse
File
util/sasl/anonymous.lua @ 370:75e7917761c0
Makefile, buildscripts/squish: Add Makefile and squish to the repo
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 31 Dec 2015 21:12:00 +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