diff options
author | Franklin Wei <me@fwei.tk> | 2018-06-02 23:40:37 -0400 |
---|---|---|
committer | Franklin Wei <me@fwei.tk> | 2018-06-02 23:40:37 -0400 |
commit | 03a601777a0f431eb951a999561c3eddd675585b (patch) | |
tree | 2120ebc8bc70c7fc33299871becaff5f99bb1387 /service_provider.h | |
parent | f1a44ba35f48d04188d8ef16ace0a992e6888dbd (diff) | |
download | csaa-03a601777a0f431eb951a999561c3eddd675585b.zip csaa-03a601777a0f431eb951a999561c3eddd675585b.tar.gz csaa-03a601777a0f431eb951a999561c3eddd675585b.tar.bz2 csaa-03a601777a0f431eb951a999561c3eddd675585b.tar.xz |
Finish implementing module F_tp()
All user requests should be supported: creation, deletion, file
update, and ACL update. Currently untested.
Diffstat (limited to 'service_provider.h')
-rw-r--r-- | service_provider.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service_provider.h b/service_provider.h index 3bf9d2e..2013dd1 100644 --- a/service_provider.h +++ b/service_provider.h @@ -11,7 +11,7 @@ struct service_provider; struct user_request { int idx; - int id; /* user id */ + int user_id; /* user id */ enum { ACL_UPDATE, FILE_UPDATE } type; int counter; hash_t val; /* for ACL update, val=[root of ACL IOMT], for file |