1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
/*
* Copyright (c) 2002-2019 Balabit
* Copyright (c) 2019 Laszlo Budai <laszlo.budai@balabit.com>
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "http-curl-header-list.h"
typedef struct _HttpCurlHeaderList HttpCurlHeaderList;
struct _HttpCurlHeaderList
{
List super;
struct curl_slist *list;
};
static void
_append(List *s, gconstpointer item)
{
HttpCurlHeaderList *self = (HttpCurlHeaderList *)s;
self->list = curl_slist_append(self->list, item);
}
static void
_foreach(List *s, list_foreach_fn foreach_fn, gpointer user_data)
{
HttpCurlHeaderList *self = (HttpCurlHeaderList *)s;
struct curl_slist *it = self->list;
while (it != NULL)
{
struct curl_slist *next = it->next;
foreach_fn(it->data, user_data);
it = next;
}
}
static gboolean
_is_empty(List *s)
{
HttpCurlHeaderList *self = (HttpCurlHeaderList *)s;
return self->list == NULL;
}
static void
_remove_all(List *s)
{
HttpCurlHeaderList *self = (HttpCurlHeaderList *)s;
curl_slist_free_all(self->list);
self->list = NULL;
}
static void
_free_fn(List *s)
{
_remove_all(s);
}
List *
http_curl_header_list_new(void)
{
HttpCurlHeaderList *self = g_new0(HttpCurlHeaderList, 1);
self->super.append = _append;
self->super.foreach = _foreach;
self->super.is_empty = _is_empty;
self->super.remove_all = _remove_all;
self->super.free_fn = _free_fn;
return &self->super;
}
struct curl_slist *
http_curl_header_list_as_slist(List *s)
{
HttpCurlHeaderList *self = (HttpCurlHeaderList *)s;
return self->list;
}
|