fix: add no_auth flag to secure commands

This commit is contained in:
Tyler Stewart
2017-05-15 11:53:48 -06:00
parent 977fbd4190
commit 1e446a7801
2 changed files with 8 additions and 2 deletions

View File

@@ -6,5 +6,8 @@ module.exports = {
return this.reply(200, this.bufferSize === 0 ? 'OK' : 'Buffer too large: PBSZ=0'); return this.reply(200, this.bufferSize === 0 ? 'OK' : 'Buffer too large: PBSZ=0');
}, },
syntax: '{{cmd}}', syntax: '{{cmd}}',
description: 'Protection Buffer Size' description: 'Protection Buffer Size',
flags: {
no_auth: true
}
}; };

View File

@@ -15,5 +15,8 @@ module.exports = {
} }
}, },
syntax: '{{cmd}}', syntax: '{{cmd}}',
description: 'Data Channel Protection Level' description: 'Data Channel Protection Level',
flags: {
no_auth: true
}
}; };