diff options
| author | Franklin Wei <git@fwei.tk> | 2016-05-19 16:47:06 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2016-05-19 16:47:06 -0400 |
| commit | cb8af6e7bf5f6e70fc9722d36448213c719e83c8 (patch) | |
| tree | ec9f93d6e1256d62a49fb628d8d7a3a931b58330 /src/userdb.h | |
| parent | 7f3ba14388a586a946d721a71eb3a9862f7f6c02 (diff) | |
| download | netcosm-cb8af6e7bf5f6e70fc9722d36448213c719e83c8.zip netcosm-cb8af6e7bf5f6e70fc9722d36448213c719e83c8.tar.gz netcosm-cb8af6e7bf5f6e70fc9722d36448213c719e83c8.tar.bz2 netcosm-cb8af6e7bf5f6e70fc9722d36448213c719e83c8.tar.xz | |
implement more of dunnet
Diffstat (limited to 'src/userdb.h')
| -rw-r--r-- | src/userdb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/userdb.h b/src/userdb.h index 25bdc7b..7958fb3 100644 --- a/src/userdb.h +++ b/src/userdb.h @@ -39,12 +39,16 @@ struct userdata_t { time_t last_login; void *objects; /* multihash of object names -> objects */ + + /* for use by world module */ + void *userdata; }; /* call before using anything else */ void userdb_init(const char *dbfile); /* looks up a username in the DB, returns NULL upon failure */ +/* changes made to the returned structure will persist */ struct userdata_t *userdb_lookup(const char *username); bool userdb_remove(const char *username); |