10 lines
358 B
Text
10 lines
358 B
Text
#####################################
|
|
# qmux_socket(clientdomain)
|
|
# Allow client domain to connecto and send
|
|
# via a local socket to the qmux domain.
|
|
# Also allow the client domain to remove
|
|
# its own socket.
|
|
define(`qmux_socket', `
|
|
allow $1 qmuxd_socket:dir create_dir_perms;
|
|
allow $1 qmuxd_socket:sock_file { read getattr write setattr create unlink };
|
|
')
|