libnfs-private.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #ifndef CCAN_NFS_LIBNFS_PRIVATE_H
  2. #define CCAN_NFS_LIBNFS_PRIVATE_H
  3. /*
  4. Copyright (C) by Ronnie Sahlberg <ronniesahlberg@gmail.com> 2010
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include <rpc/auth.h>
  17. struct rpc_context {
  18. int fd;
  19. int is_connected;
  20. char *error_string;
  21. rpc_cb connect_cb;
  22. void *connect_data;
  23. AUTH *auth;
  24. unsigned long xid;
  25. /* buffer used for encoding RPC PDU */
  26. char *encodebuf;
  27. int encodebuflen;
  28. struct rpc_pdu *outqueue;
  29. struct rpc_pdu *waitpdu;
  30. int insize;
  31. int inpos;
  32. char *inbuf;
  33. };
  34. struct rpc_pdu {
  35. struct rpc_pdu *prev, *next;
  36. unsigned long xid;
  37. XDR xdr;
  38. int written;
  39. struct rpc_data outdata;
  40. rpc_cb cb;
  41. void *private_data;
  42. /* function to decode the xdr reply data and buffer to decode into */
  43. xdrproc_t xdr_decode_fn;
  44. caddr_t xdr_decode_buf;
  45. int xdr_decode_bufsize;
  46. };
  47. struct rpc_pdu *rpc_allocate_pdu(struct rpc_context *rpc, int program, int version, int procedure, rpc_cb cb, void *private_data, xdrproc_t xdr_decode_fn, int xdr_bufsize);
  48. void rpc_free_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
  49. int rpc_queue_pdu(struct rpc_context *rpc, struct rpc_pdu *pdu);
  50. int rpc_get_pdu_size(char *buf);
  51. int rpc_process_pdu(struct rpc_context *rpc, char *buf, int size);
  52. void rpc_error_all_pdus(struct rpc_context *rpc, char *error);
  53. #endif /* CCAN_NFS_LIBNFS_PRIVATE_H */