summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-07-05 11:16:05 +0200
committerBastien Nocera <hadess@hadess.net>2022-07-05 11:16:05 +0200
commitd822f7dacd1fb97e1e25304e4657696892248972 (patch)
tree0e8444593327c0786f10af82b6d4c33fda5026d1
parent3d73177e05161aeb1ef1fd071098c7534429dd00 (diff)
downloadgrilo-d822f7dacd1fb97e1e25304e4657696892248972.tar.gz
net: Split GrlNetWcPrivate definition
-rw-r--r--libs/net/grl-net-wc-private.h45
-rw-r--r--libs/net/grl-net-wc.c17
2 files changed, 46 insertions, 16 deletions
diff --git a/libs/net/grl-net-wc-private.h b/libs/net/grl-net-wc-private.h
new file mode 100644
index 0000000..d954a20
--- /dev/null
+++ b/libs/net/grl-net-wc-private.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2010, 2011 Igalia S.L.
+ * Copyright (C) 2012 Canonical Ltd.
+ *
+ * Contact: Iago Toral Quiroga <itoral@igalia.com>
+ *
+ * Authors: Víctor M. Jáquez L. <vjaquez@igalia.com>
+ * Juan A. Suarez Romero <jasuarez@igalia.com>
+ * Jens Georg <jensg@openismus.com>
+ * Mathias Hasselmann <mathias@openismus.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
+#include <libsoup/soup.h>
+
+struct _GrlNetWcPrivate {
+ SoupSession *session;
+ char *user_agent;
+ SoupLoggerLogLevel log_level;
+ /* throttling in secs */
+ guint throttling;
+ /* last request time, timestamp in seconds */
+ gint64 last_request;
+ /* closure queue for delayed requests */
+ GQueue *pending;
+ /* cache size in Mb */
+ gboolean use_cache;
+ guint cache_size;
+ gchar *previous_data;
+};
diff --git a/libs/net/grl-net-wc.c b/libs/net/grl-net-wc.c
index fe4a914..8ce20db 100644
--- a/libs/net/grl-net-wc.c
+++ b/libs/net/grl-net-wc.c
@@ -51,6 +51,7 @@
#include <grilo.h>
#include "grl-net-wc.h"
+#include "grl-net-wc-private.h"
#include "grl-net-mock-private.h"
#define GRL_LOG_DOMAIN_DEFAULT wc_log_domain
@@ -74,22 +75,6 @@ struct request_res {
gsize offset;
};
-struct _GrlNetWcPrivate {
- SoupSession *session;
- char *user_agent;
- SoupLoggerLogLevel log_level;
- /* throttling in secs */
- guint throttling;
- /* last request time, timestamp in seconds */
- gint64 last_request;
- /* closure queue for delayed requests */
- GQueue *pending;
- /* cache size in Mb */
- gboolean use_cache;
- guint cache_size;
- gchar *previous_data;
-};
-
static const char *capture_dir = NULL;
GQuark