]> git.meshlink.io Git - catta/blob - avahi-common/strlst.h
* implement new source address check mechanisms
[catta] / avahi-common / strlst.h
1 #ifndef footxtlisthfoo
2 #define footxtlisthfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of avahi.
8  
9   avahi is free software; you can redistribute it and/or modify it
10   under the terms of the GNU Lesser General Public License as
11   published by the Free Software Foundation; either version 2.1 of the
12   License, or (at your option) any later version.
13  
14   avahi is distributed in the hope that it will be useful, but WITHOUT
15   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17   Public License for more details.
18  
19   You should have received a copy of the GNU Lesser General Public
20   License along with avahi; if not, write to the Free Software
21   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22   USA.
23 ***/
24
25 #include <glib.h>
26
27 /** Linked list of strings that can contain any number of binary
28  * characters, include NUL bytes. An empty list is created by
29  * assigning a NULL to a pointer to AvahiStringList. The string list
30  * is stored in reverse order, so that appending to the string list is
31  * effectively a prepending to the linked list.  This object is used
32  * primarily for storing DNS TXT record data. */
33 typedef struct AvahiStringList {
34     struct AvahiStringList *next; /**< Pointe to the next linked list element */
35     guint size;  /**< Size of text[] */
36     guint8 text[1]; /**< Character data */
37 } AvahiStringList;
38
39 /** Create a new string list by taking a variable list of NUL
40  * terminated strings. The strings are copied using g_strdup(). The
41  * argument list must be terminated by a NULL pointer. */
42 AvahiStringList *avahi_string_list_new(const gchar *txt, ...);
43
44 /** Same as avahi_string_list_new() but pass a va_list structure */
45 AvahiStringList *avahi_string_list_new_va(va_list va);
46
47 /** Free a string list */
48 void avahi_string_list_free(AvahiStringList *l);
49
50 /** Append a NUL terminated string to the specified string list. The
51  * passed string is copied using g_strdup(). Returns the new list
52  * start. */
53 AvahiStringList *avahi_string_list_add(AvahiStringList *l, const gchar *text);
54
55 /** Append am arbitrary length byte string to the list. Returns the
56  * new list start. */
57 AvahiStringList *avahi_string_list_add_arbitrary(AvahiStringList *l, const guint8 *text, guint size);
58
59 /** Same as avahi_string_list_add(), but takes a variable number of
60  * NUL terminated strings. The argument list must be terminated by a
61  * NULL pointer. Returns the new list start. */
62 AvahiStringList *avahi_string_list_add_many(AvahiStringList *r, ...);
63
64 /** Same as avahi_string_list_add_many(), but use a va_list
65  * structure. Returns the new list start. */
66 AvahiStringList *avahi_string_list_add_many_va(AvahiStringList *r, va_list va);
67
68 /** Convert the string list object to a single character string,
69  * seperated by spaces and enclosed in "". g_free() the result! This
70  * function doesn't work well with string that contain NUL bytes. */
71 gchar* avahi_string_list_to_string(AvahiStringList *l);
72
73 /** Serialize the string list object in a way that is compatible with
74  * the storing of DNS TXT records. Strings longer than 255 bytes are truncated. */
75 guint avahi_string_list_serialize(AvahiStringList *l, gpointer data, guint size);
76
77 /** Inverse of avahi_string_list_serialize() */
78 AvahiStringList *avahi_string_list_parse(gconstpointer data, guint size);
79
80 /** Compare to string lists */
81 gboolean avahi_string_list_equal(const AvahiStringList *a, const AvahiStringList *b);
82
83 /** Copy a string list */
84 AvahiStringList *avahi_string_list_copy(const AvahiStringList *l);
85
86 #endif
87