aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-04-10 14:09:51 +0200
committerMattias Andrée <maandree@kth.se>2023-04-10 14:09:51 +0200
commit5448e1b2ef55a099727cdafee83eabb1cc8f4e4a (patch)
treefcbcaddb090e640f055438866fc9bd87d9c3d5b1
parentAdd man page: LIBAXL_REQUEST_NO_OPERATION.3 (diff)
downloadlibaxl-5448e1b2ef55a099727cdafee83eabb1cc8f4e4a.tar.gz
libaxl-5448e1b2ef55a099727cdafee83eabb1cc8f4e4a.tar.bz2
libaxl-5448e1b2ef55a099727cdafee83eabb1cc8f4e4a.tar.xz
Add man page: LIBAXL_REQUEST_SET_ACCESS_CONTROL.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--man3/LIBAXL_REQUEST_SET_ACCESS_CONTROL.365
1 files changed, 65 insertions, 0 deletions
diff --git a/man3/LIBAXL_REQUEST_SET_ACCESS_CONTROL.3 b/man3/LIBAXL_REQUEST_SET_ACCESS_CONTROL.3
new file mode 100644
index 0000000..c02a54a
--- /dev/null
+++ b/man3/LIBAXL_REQUEST_SET_ACCESS_CONTROL.3
@@ -0,0 +1,65 @@
+.TH LIBAXL_REQUEST_SET_ACCESS_CONTROL 3 libaxl
+.SH NAME
+LIBAXL_REQUEST_SET_ACCESS_CONTROL - Enable or disable use of ACL at connection setup
+.SH SYNOPSIS
+.nf
+#include <libaxl.h>
+
+#define LIBAXL_REQUEST_SET_ACCESS_CONTROL 111
+struct libaxl_request_set_access_control {
+ uint8_t \fIopcode\fP;
+ uint8_t \fImode\fP;
+ uint16_t \fI_request_length\fP;
+};
+.fi
+.SH DESCRIPTION
+The display server shall enable or disable the
+use of the access control list at connection setup.
+.PP
+The value of the
+.I opcode
+field shall be
+.I LIBAXL_REQUEST_SET_ACCESS_CONTROL
+to signify that the request is of the request
+described in this document.
+.PP
+The value of the
+.I mode
+field shall be set to either
+.I LIBAXL_ENABLE
+(=
+.IR 1 )
+or
+.I LIBAXL_DISABLE
+(=
+.IR 0 ).
+The value
+.I LIBAXL_ENABLE
+enables the use of the access control list,
+and the value
+.I LIBAXL_DISABLE
+disables the use of it.
+.PP
+Other fields are filled in automatically by the
+.BR libaxl_send_request (3)
+function.
+.SH ERRORS
+.TP
+.BR LIBAXL_ERROR_ACCESS (3)
+The client does not reside on the same host
+as the server and has not be granted permission,
+using a server-dependent method, to execute this
+request.
+.TP
+.BR LIBAXL_ERROR_VALUE (3)
+.I mode
+is neither set to
+.I LIBAXL_DISABLE
+nor
+.IR LIBAXL_ENABLE .
+.SH REPLIES
+None.
+.SH SEE ALSO
+.BR libaxl_send_request (3),
+.BR LIBAXL_REQUEST_CHANGE_HOSTS (3),
+.BR LIBAXL_REQUEST_LIST_HOSTS (3)