FTAM/9000 Programmer's Guide

92 Chapter 3
HP FTAM/9000 Data Structures
Ft_access_control
Ft_access_control
struct Ft_access_control {
struct Ft_access_control_element *insert_ace;
struct Ft_access_control_element *delete_ace;
};
Use Ft_access_control to add users to and delete users from the access
list (Ft_access_control_elements) for a particular file. Both insert_ace
and delete_ace are linked lists of Ft_access_control_element structures (
). This structure specifies user access privileges for the file.
If insert_ace is NULL when creating a file (ft_create() and ft_fopen()),
anyone can access the file.
If you use both insert_ace and delete_ace, HP-UX responders process
delete_ace first.
Ft_access_control Is Input To
These Functions
Ft_access_control Is Output
From These Functions
ft_cattributes()
ft_create()
ft_fcattributes()
ft_fopen()
None