gunixfdmessage.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright © 2009 Codethink Limited
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published
  7. * by the Free Software Foundation; either version 2 of the licence or (at
  8. * your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * Authors: Ryan Lortie <desrt@desrt.ca>
  19. */
  20. #ifndef __G_UNIX_FD_MESSAGE_H__
  21. #define __G_UNIX_FD_MESSAGE_H__
  22. #include <gio/gio.h>
  23. #include <gio/gunixfdlist.h>
  24. G_BEGIN_DECLS
  25. #define G_TYPE_UNIX_FD_MESSAGE (g_unix_fd_message_get_type ())
  26. #define G_UNIX_FD_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
  27. G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessage))
  28. #define G_UNIX_FD_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
  29. G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass))
  30. #define G_IS_UNIX_FD_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
  31. G_TYPE_UNIX_FD_MESSAGE))
  32. #define G_IS_UNIX_FD_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
  33. G_TYPE_UNIX_FD_MESSAGE))
  34. #define G_UNIX_FD_MESSAGE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
  35. G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass))
  36. typedef struct _GUnixFDMessagePrivate GUnixFDMessagePrivate;
  37. typedef struct _GUnixFDMessageClass GUnixFDMessageClass;
  38. typedef struct _GUnixFDMessage GUnixFDMessage;
  39. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixFDMessage, g_object_unref)
  40. struct _GUnixFDMessageClass
  41. {
  42. GSocketControlMessageClass parent_class;
  43. /*< private >*/
  44. /* Padding for future expansion */
  45. void (*_g_reserved1) (void);
  46. void (*_g_reserved2) (void);
  47. };
  48. struct _GUnixFDMessage
  49. {
  50. GSocketControlMessage parent_instance;
  51. GUnixFDMessagePrivate *priv;
  52. };
  53. GLIB_AVAILABLE_IN_ALL
  54. GType g_unix_fd_message_get_type (void) G_GNUC_CONST;
  55. GLIB_AVAILABLE_IN_ALL
  56. GSocketControlMessage * g_unix_fd_message_new_with_fd_list (GUnixFDList *fd_list);
  57. GLIB_AVAILABLE_IN_ALL
  58. GSocketControlMessage * g_unix_fd_message_new (void);
  59. GLIB_AVAILABLE_IN_ALL
  60. GUnixFDList * g_unix_fd_message_get_fd_list (GUnixFDMessage *message);
  61. GLIB_AVAILABLE_IN_ALL
  62. gint * g_unix_fd_message_steal_fds (GUnixFDMessage *message,
  63. gint *length);
  64. GLIB_AVAILABLE_IN_ALL
  65. gboolean g_unix_fd_message_append_fd (GUnixFDMessage *message,
  66. gint fd,
  67. GError **error);
  68. G_END_DECLS
  69. #endif /* __G_UNIX_FD_MESSAGE_H__ */