node-x11/lib/x11/auth.js

11 lines
255 B
JavaScript

// TODO: http://en.wikipedia.org/wiki/X_Window_authorization
module.exports = function( cb )
{
// empty yet
var authType = '';
var authData = '';
cb( authType, authData );
}
// TODO: rewrite to allow negotiation of auth type with server