HP-UX SNAplus2 NOF Programmer's Guide

NOF API Verbs (ACTIVATE_SESSION to OPEN_FILE)
DELETE_SECURITY_ACCESS_LIST
Chapter 3 465
DELETE_SECURITY_ACCESS_LIST
DELETE_SECURITY_ACCESS_LIST is used to do one of the following:
Delete a security access list.
Delete one or more users from a security access list but leave the list
configured.
You can delete a user name from the security access list regardless of
whether there are active conversations that were set up using that user
name. Deleting the user name does not affect the active conversations,
but the invoking program will not be able to set up any further
conversations using the deleted user name.
VCB Structure
The DELETE_SECURITY_ACCESS_LIST verb contains a variable
number of security_user_name structures. These define the user
names to be deleted from the security access list. The user name
structures are included at the end of the
delete_security_access_list structure. The number of these
structures is specified by the
num_users
parameter.
typedef struct delete_security_access_list
{
AP_UINT16 opcode; /* verb operation code */
unsigned char reserv2; /* reserved */
unsigned char format; /* reserved */
AP_UINT16 primary_rc; /* primary return code */
AP_UINT32 secondary_rc; /* secondary return code */
unsigned char list_name[14]; /* name of this list */
unsigned char reserv3[2]; /* reserved */
AP_UINT32 num_users; /* number of users to delete */
} DELETE_SECURITY_ACCESS_LIST;
typedef struct security_user_name
{
unsigned char user_name[10]; /* user name to delete */
} SECURITY_USER_NAME;