/* Domain Lord Access object */
/* As domain lord you have file access control to files in your domain.
* A return of 1 will give 'name' access to the file, fname.
*/
/* VALID WRITE
*/
status valid_write(string fname, string name) {
return 0;
}
/* VALID READ.
*/
status valid_read(string fname, string name) {
if(valid_write(fname,name)) return 1;
return 0;
}