X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Flibnfs.h;h=0676efa787c58e83aba834986be3363919b0e3b2;hb=f7f931c7e3a382b964ed6464125cf261e7358bf8;hp=bbca07e1f809192a34138929640689ef361bbdc1;hpb=7f0242ca9a109c6825646609b8eda0ce0b866b67;p=deb_libnfs.git diff --git a/include/libnfs.h b/include/libnfs.h index bbca07e..0676efa 100644 --- a/include/libnfs.h +++ b/include/libnfs.h @@ -937,8 +937,42 @@ int nfs_link(struct nfs_context *nfs, const char *oldpath, const char *newpath); * data is the error string. */ int mount_getexports_async(struct rpc_context *rpc, const char *server, rpc_cb cb, void *private_data); +/* + * Sync getexports() + * Function returns + * NULL : something failed + * exports export : a linked list of exported directories + * + * returned data must be freed by calling mount_free_export_list(exportnode); + */ +struct exportnode *mount_getexports(const char *server); +void mount_free_export_list(struct exportnode *exports); //qqq replace later with lseek(cur, 0) off_t nfs_get_current_offset(struct nfsfh *nfsfh); + + + + + +struct nfs_server_list { + struct nfs_server_list *next; + char *addr; +}; + +/* + * Sync find_local_servers() + * This function will probe all local networks for NFS server. This function will + * block for one second while awaiting for all nfs servers to respond. + * + * Function returns + * NULL : something failed + * + * struct nfs_server_list : a linked list of all discovered servers + * + * returned data must be freed by nfs_free_srvr_list(srv); + */ +struct nfs_server_list *nfs_find_local_servers(void); +void free_nfs_srvr_list(struct nfs_server_list *srv);