Description
Type integer READONLY
Read-only constant for sudo type clients. You can compare pmclient_type_sudo to pmclient_type to determine if the request was sent from a Sudo Plugin client.
Example
# reject if pmclient_type is "sudo" 
if (pmclient_type == pmclient_type_sudo) { 
   reject; 
} else if (pmclient_type == pmclient_type_pmrun) { 
   ok = true; 
}