Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <valent.h>
7 : :
8 : : G_BEGIN_DECLS
9 : :
10 : : #define VALENT_TYPE_LAN_DNSSD (valent_lan_dnssd_get_type())
11 : :
12 [ + - + - : 112 : G_DECLARE_FINAL_TYPE (ValentLanDNSSD, valent_lan_dnssd, VALENT, LAN_DNSSD, ValentObject)
- + ]
13 : :
14 : : GListModel * valent_lan_dnssd_new (JsonNode *identity);
15 : : void valent_lan_dnssd_attach (ValentLanDNSSD *self,
16 : : GMainContext *context);
17 : :
18 : : /*
19 : : * GSocketAddress Helpers
20 : : */
21 : : #define _g_socket_address_get_dnssd_name(a) \
22 : : g_object_get_data (G_OBJECT (a), "dnssd-service-name")
23 : :
24 : : #define _g_socket_address_set_dnssd_name(a, n) \
25 : : g_object_set_data_full (G_OBJECT (a), "dnssd-service-name", \
26 : : g_strdup (n), g_free)
27 : :
28 : : G_END_DECLS
|