X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=include%2Flibnfs-private.h;h=a083b37031100b82fafea1d85b2267ebcb8b18a9;hb=e01ed6a239175772baf904d66105766f825fc1d4;hp=4c8594c72452a2c7903cd4070b7863af12801dc7;hpb=dd8fc17555bd59cd2af931e24e9f747f03a76eb2;p=deb_libnfs.git diff --git a/include/libnfs-private.h b/include/libnfs-private.h index 4c8594c..a083b37 100644 --- a/include/libnfs-private.h +++ b/include/libnfs-private.h @@ -17,6 +17,12 @@ #include #include +struct rpc_fragment { + struct rpc_fragment *next; + uint64_t size; + char *data; +}; + struct rpc_context { int fd; int is_connected; @@ -45,6 +51,13 @@ struct rpc_context { int is_udp; struct sockaddr *udp_dest; int is_broadcast; + + /* track the address we connect to so we can auto-reconnect on session failure */ + struct sockaddr_storage s; + int auto_reconnect; + + /* fragment reassembly */ + struct rpc_fragment *fragments; }; struct rpc_pdu { @@ -75,7 +88,6 @@ void rpc_error_all_pdus(struct rpc_context *rpc, char *error); void rpc_set_error(struct rpc_context *rpc, char *error_string, ...); void nfs_set_error(struct nfs_context *nfs, char *error_string, ...); -struct rpc_context *nfs_get_rpc_context(struct nfs_context *nfs); const char *nfs_get_server(struct nfs_context *nfs); const char *nfs_get_export(struct nfs_context *nfs); @@ -85,3 +97,10 @@ int rpc_set_udp_destination(struct rpc_context *rpc, char *addr, int port, int i struct rpc_context *rpc_init_udp_context(void); struct sockaddr *rpc_get_recv_sockaddr(struct rpc_context *rpc); +void rpc_set_autoreconnect(struct rpc_context *rpc); +void rpc_unset_autoreconnect(struct rpc_context *rpc); + +int rpc_add_fragment(struct rpc_context *rpc, char *data, uint64_t size); +void rpc_free_all_fragments(struct rpc_context *rpc); + +const struct nfs_fh3 *nfs_get_rootfh(struct nfs_context *nfs);