mirror of
https://github.com/danbulant/node-x11
synced 2026-05-21 13:29:13 +00:00
11 lines
255 B
JavaScript
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
|