diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2008-08-05 17:46:37 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2008-08-05 17:46:37 -0700 |
commit | a78b9819cbbbddccb4a6bf364b88ec4f27d25c1f (patch) | |
tree | 0024d483d75e4551b57f2b27c9e3eef8199448db | |
parent | 3db805979b476d233baa881e83950ef1d2731841 (diff) |
Added a flag to enable "The OS already took care of securing this, please skip checking xauth" for use with Apple launchd sockets.
-rw-r--r-- | Xtransint.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Xtransint.h b/Xtransint.h index 317dbf8..e14b26c 100644 --- a/Xtransint.h +++ b/Xtransint.h @@ -370,6 +370,7 @@ typedef struct _Xtransport_table { #define TRANS_NOLISTEN (1<<3) /* Don't listen on this one */ #define TRANS_NOUNLINK (1<<4) /* Dont unlink transport endpoints */ #define TRANS_ABSTRACT (1<<5) /* Use abstract sockets if available */ +#define TRANS_NOXAUTH (1<<6) /* Don't verify authentication (because it's secure some other way at the OS layer) */ /* Flags to preserve when setting others */ #define TRANS_KEEPFLAGS (TRANS_NOUNLINK|TRANS_ABSTRACT) |