Software /
code /
prosody
Diff
util/sasl_cyrus.lua @ 3063:ca149818083d
util.sasl_cyrus: Support for specifying the application name (to pass to Cyrus SASL's init())
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 20 May 2010 11:13:51 +0100 |
parent | 2903:d6da8f8e3502 |
child | 3157:174f3cfe86ff |
line wrap: on
line diff
--- a/util/sasl_cyrus.lua Thu May 20 11:08:51 2010 +0100 +++ b/util/sasl_cyrus.lua Thu May 20 11:13:51 2010 +0100 @@ -45,10 +45,10 @@ end -- create a new SASL object which can be used to authenticate clients -function new(realm, service_name) +function new(realm, service_name, app_name) local sasl_i = {}; - init(service_name); + init(app_name or service_name); sasl_i.realm = realm; sasl_i.service_name = service_name;