ga-client.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * ga-client.h - Header for GaClient
  3. * Copyright (C) 2006-2007 Collabora Ltd.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at 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 Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #ifndef __GA_CLIENT_H__
  20. #define __GA_CLIENT_H__
  21. #include <glib-object.h>
  22. #include <avahi-client/client.h>
  23. G_BEGIN_DECLS
  24. typedef enum {
  25. GA_CLIENT_STATE_NOT_STARTED = -1,
  26. GA_CLIENT_STATE_S_REGISTERING = AVAHI_CLIENT_S_REGISTERING,
  27. GA_CLIENT_STATE_S_RUNNING = AVAHI_CLIENT_S_RUNNING,
  28. GA_CLIENT_STATE_S_COLLISION = AVAHI_CLIENT_S_COLLISION,
  29. GA_CLIENT_STATE_FAILURE = AVAHI_CLIENT_FAILURE,
  30. GA_CLIENT_STATE_CONNECTING = AVAHI_CLIENT_CONNECTING
  31. } GaClientState;
  32. typedef enum {
  33. GA_CLIENT_FLAG_NO_FLAGS = 0,
  34. GA_CLIENT_FLAG_IGNORE_USER_CONFIG = AVAHI_CLIENT_IGNORE_USER_CONFIG,
  35. GA_CLIENT_FLAG_NO_FAIL = AVAHI_CLIENT_NO_FAIL
  36. } GaClientFlags;
  37. typedef struct _GaClient GaClient;
  38. typedef struct _GaClientClass GaClientClass;
  39. struct _GaClientClass {
  40. GObjectClass parent_class;
  41. };
  42. struct _GaClient {
  43. GObject parent;
  44. /* Raw avahi_client handle, only reuse if you have reffed this instance */
  45. AvahiClient *avahi_client;
  46. };
  47. GType ga_client_get_type(void);
  48. /* TYPE MACROS */
  49. #define GA_TYPE_CLIENT \
  50. (ga_client_get_type())
  51. #define GA_CLIENT(obj) \
  52. (G_TYPE_CHECK_INSTANCE_CAST((obj), GA_TYPE_CLIENT, GaClient))
  53. #define GA_CLIENT_CLASS(klass) \
  54. (G_TYPE_CHECK_CLASS_CAST((klass), GA_TYPE_CLIENT, GaClientClass))
  55. #define IS_GA_CLIENT(obj) \
  56. (G_TYPE_CHECK_INSTANCE_TYPE((obj), GA_TYPE_CLIENT))
  57. #define IS_GA_CLIENT_CLASS(klass) \
  58. (G_TYPE_CHECK_CLASS_TYPE((klass), GA_TYPE_CLIENT))
  59. #define GA_CLIENT_GET_CLASS(obj) \
  60. (G_TYPE_INSTANCE_GET_CLASS ((obj), GA_TYPE_CLIENT, GaClientClass))
  61. GaClient *ga_client_new(GaClientFlags flags);
  62. gboolean ga_client_start(GaClient * client, GError ** error);
  63. G_END_DECLS
  64. #endif /* #ifndef __GA_CLIENT_H__ */