gunixconnection.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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_CONNECTION_H__
  21. #define __G_UNIX_CONNECTION_H__
  22. #include <gio/gio.h>
  23. G_BEGIN_DECLS
  24. #define G_TYPE_UNIX_CONNECTION (g_unix_connection_get_type ())
  25. #define G_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
  26. G_TYPE_UNIX_CONNECTION, GUnixConnection))
  27. #define G_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
  28. G_TYPE_UNIX_CONNECTION, GUnixConnectionClass))
  29. #define G_IS_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
  30. G_TYPE_UNIX_CONNECTION))
  31. #define G_IS_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
  32. G_TYPE_UNIX_CONNECTION))
  33. #define G_UNIX_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
  34. G_TYPE_UNIX_CONNECTION, GUnixConnectionClass))
  35. typedef struct _GUnixConnection GUnixConnection;
  36. typedef struct _GUnixConnectionPrivate GUnixConnectionPrivate;
  37. typedef struct _GUnixConnectionClass GUnixConnectionClass;
  38. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixConnection, g_object_unref)
  39. struct _GUnixConnectionClass
  40. {
  41. GSocketConnectionClass parent_class;
  42. };
  43. struct _GUnixConnection
  44. {
  45. GSocketConnection parent_instance;
  46. GUnixConnectionPrivate *priv;
  47. };
  48. GLIB_AVAILABLE_IN_ALL
  49. GType g_unix_connection_get_type (void);
  50. GLIB_AVAILABLE_IN_ALL
  51. gboolean g_unix_connection_send_fd (GUnixConnection *connection,
  52. gint fd,
  53. GCancellable *cancellable,
  54. GError **error);
  55. GLIB_AVAILABLE_IN_ALL
  56. gint g_unix_connection_receive_fd (GUnixConnection *connection,
  57. GCancellable *cancellable,
  58. GError **error);
  59. GLIB_AVAILABLE_IN_ALL
  60. gboolean g_unix_connection_send_credentials (GUnixConnection *connection,
  61. GCancellable *cancellable,
  62. GError **error);
  63. GLIB_AVAILABLE_IN_2_32
  64. void g_unix_connection_send_credentials_async (GUnixConnection *connection,
  65. GCancellable *cancellable,
  66. GAsyncReadyCallback callback,
  67. gpointer user_data);
  68. GLIB_AVAILABLE_IN_2_32
  69. gboolean g_unix_connection_send_credentials_finish (GUnixConnection *connection,
  70. GAsyncResult *result,
  71. GError **error);
  72. GLIB_AVAILABLE_IN_2_32
  73. GCredentials *g_unix_connection_receive_credentials (GUnixConnection *connection,
  74. GCancellable *cancellable,
  75. GError **error);
  76. GLIB_AVAILABLE_IN_2_32
  77. void g_unix_connection_receive_credentials_async (GUnixConnection *connection,
  78. GCancellable *cancellable,
  79. GAsyncReadyCallback callback,
  80. gpointer user_data);
  81. GLIB_AVAILABLE_IN_ALL
  82. GCredentials *g_unix_connection_receive_credentials_finish (GUnixConnection *connection,
  83. GAsyncResult *result,
  84. GError **error);
  85. G_END_DECLS
  86. #endif /* __G_UNIX_CONNECTION_H__ */