summaryrefslogtreecommitdiff
path: root/libgupnp/gupnp-service-private.h
blob: 0f266c548b9c757ade3e7a1cadbb39fbe1591111 (plain)
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
/*
 * Copyright (C) 2019 Jens Georg.
 *
 * Author: Jens Georg <mail@jensge.org>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#ifndef GUPNP_SERVICE_PRIVATE_H
#define GUPNP_SERVICE_PRIVATE_H

#include "gupnp-context.h"
#include "gupnp-xml-doc.h"

#include <libsoup/soup.h>

struct _GUPnPServiceAction {
        GUPnPContext *context;

        char         *name;

        SoupServerMessage *msg;
        gboolean      accept_gzip;

        GUPnPXMLDoc  *doc;
        xmlNode      *node;

        GString      *response_str;

        guint         argument_count;
};

void
gupnp_service_action_unref (struct _GUPnPServiceAction *action);

#endif