diff options
author | Remko Tronçon <git@el-tramo.be> | 2014-01-17 20:02:19 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2014-01-18 10:44:42 (GMT) |
commit | 85c46a0fcce3495fe94397d53791628a8ccc74c4 (patch) | |
tree | 233decfdbe1c221f3db2149f0f59d828173c102e /Sluift/Examples | |
parent | 09108f5ac3c1a6567730b5bbd0c847f8422ff4a2 (diff) | |
download | swift-85c46a0fcce3495fe94397d53791628a8ccc74c4.zip swift-85c46a0fcce3495fe94397d53791628a8ccc74c4.tar.bz2 |
Sluift: Allow blocking calls to be interrupted.
Change-Id: I3755e796fbddc038022bbf543c7b1c0529a9b0f9
Diffstat (limited to 'Sluift/Examples')
-rw-r--r-- | Sluift/Examples/Login.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sluift/Examples/Login.lua b/Sluift/Examples/Login.lua index c43b72a..fadb651 100644 --- a/Sluift/Examples/Login.lua +++ b/Sluift/Examples/Login.lua @@ -1,5 +1,5 @@ --[[ - Copyright (c) 2010-2013 Remko Tronçon + Copyright (c) 2010-2014 Remko Tronçon Licensed under the GNU General Public License v3. See Documentation/Licenses/GPLv3.txt for more information. --]] @@ -21,7 +21,7 @@ sluift.debug = os.getenv("SLUIFT_DEBUG") or false print("Connecting " .. os.getenv("SLUIFT_JID") .. " ...") c = sluift.new_client(os.getenv("SLUIFT_JID"), os.getenv("SLUIFT_PASS")) -c:set_options({compress = false, tls = false}) +c:set_options{compress = false, tls = false} c:connect() c:send_presence("") |