X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Finclude%2Fexportfs.h;h=a5cf482584af668e5f8a847909ec7e827a747705;hp=c1ba54357fa677f9d9eb48cb5e2517ff8d63a0c3;hb=4cacc965afc4fb03a465ffcc6cb3078aeadc3818;hpb=35001db4aaafa8a17e13b8c13cf74508d4a93f2f diff --git a/support/include/exportfs.h b/support/include/exportfs.h index c1ba543..a5cf482 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -52,8 +52,21 @@ typedef struct mexport { * matching one client */ } nfs_export; +#define HASH_TABLE_SIZE 1021 + +typedef struct _exp_hash_entry { + nfs_export * p_first; + nfs_export * p_last; +} exp_hash_entry; + +typedef struct _exp_hash_table { + nfs_export * p_head; + exp_hash_entry entries[HASH_TABLE_SIZE]; +} exp_hash_table; + +extern exp_hash_table exportlist[MCL_MAXTYPES]; + extern nfs_client * clientlist[MCL_MAXTYPES]; -extern nfs_export * exportlist[MCL_MAXTYPES]; nfs_client * client_lookup(char *hname, int canonical); nfs_client * client_find(struct hostent *); @@ -69,7 +82,7 @@ struct hostent * client_resolve(struct in_addr addr); int client_member(char *client, char *name); int export_read(char *fname); -void export_add(nfs_export *); +void export_add(nfs_export *); void export_reset(nfs_export *); nfs_export * export_lookup(char *hname, char *path, int caconical); nfs_export * export_find(struct hostent *, char *path);