mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
10 lines
193 B
C
10 lines
193 B
C
|
/*
|
||
|
* Definition of the array of X11 authorisation method names.
|
||
|
*/
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
const char *const x11_authnames[X11_NAUTHS] = {
|
||
|
"", "MIT-MAGIC-COOKIE-1", "XDM-AUTHORIZATION-1"
|
||
|
};
|