PORTMAPPER: Add set/unset functions
[deb_libnfs.git] / include / libnfs-private.h
index c6a8820f6bcae2b5e10e00f4c56fc7bf3e1194e0..b1fe13480dac57570d5c39c17f62706a0926cf45 100644 (file)
    You should have received a copy of the GNU Lesser General Public License
    along with this program; if not, see <http://www.gnu.org/licenses/>.
 */
+#include <rpc/xdr.h>
 #include <rpc/auth.h>
 
+struct rpc_fragment {
+       struct rpc_fragment *next;
+       uint64_t size;
+       char *data;
+};
+
 struct rpc_context {
        int fd;
        int is_connected;
@@ -44,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 {
@@ -84,3 +98,9 @@ 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);
+