Comparison

plugins/tls.lua @ 66:cd66229bdd7f

verse.plugins.tls: Return true to indicate success loading plugin
author Matthew Wild <mwild1@gmail.com>
date Tue, 11 May 2010 23:18:11 +0100
parent 65:4f13cc5f96b0
child 67:8154b72591d5
comparison
equal deleted inserted replaced
65:4f13cc5f96b0 66:cd66229bdd7f
28 end 28 end
29 end 29 end
30 stream:hook("stream-features", handle_features, 400); 30 stream:hook("stream-features", handle_features, 400);
31 stream:hook("stream/"..xmlns_tls, handle_tls); 31 stream:hook("stream/"..xmlns_tls, handle_tls);
32 stream:hook("status", handle_status, 400); 32 stream:hook("status", handle_status, 400);
33
34 return true;
33 end 35 end