Software /
code /
verse
File
util/sasl/anonymous.lua @ 415:37674f8ce263
verse.plugins.pep: Support taking an item id, default to "current"
XEP-0060 recommends using "current" in section 'Singleton Nodes' and
many PEP use cases follow this pattern.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 20 May 2018 00:56:24 +0200 |
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