transport.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * linux/fs/9p/transport.h
  3. *
  4. * Transport Definition
  5. *
  6. * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to:
  20. * Free Software Foundation
  21. * 51 Franklin Street, Fifth Floor
  22. * Boston, MA 02111-1301 USA
  23. *
  24. */
  25. enum v9fs_transport_status {
  26. Connected,
  27. Disconnected,
  28. Hung,
  29. };
  30. struct v9fs_transport {
  31. enum v9fs_transport_status status;
  32. struct semaphore writelock;
  33. struct semaphore readlock;
  34. void *priv;
  35. int (*init) (struct v9fs_session_info *, const char *, char *);
  36. int (*write) (struct v9fs_transport *, void *, int);
  37. int (*read) (struct v9fs_transport *, void *, int);
  38. void (*close) (struct v9fs_transport *);
  39. };
  40. extern struct v9fs_transport v9fs_trans_tcp;
  41. extern struct v9fs_transport v9fs_trans_unix;
  42. extern struct v9fs_transport v9fs_trans_fd;