Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
commit just to kick travis again. why did it fail?
Browse files Browse the repository at this point in the history
  • Loading branch information
btsimonh committed May 15, 2017
1 parent 063d811 commit 880c82e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/Server_With_All_Interfaces-Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ var authenticate = function (client, username, password, callback) {
var authorizePublish = function (client, topic, payload, callback) {
var auth = true;
// set auth to :
// true to allow,
// false to deny and disconnect,
// true to allow
// false to deny and disconnect
// 'ignore' to puback but not publish msg.
callback(null, auth);
}

var authorizeSubscribe = function (client, topic, callback) {
var auth = true;
// set auth to :
// true to allow,
// false to deny,
// true to allow
// false to deny
callback(null, auth);
}

Expand Down

0 comments on commit 880c82e

Please sign in to comment.