summaryrefslogtreecommitdiff
path: root/libgupnp/gupnp-context.h
blob: 383a563737de764703336ea5df1ab38550c480f6 (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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
 *
 * Author: Jorn Baayen <jorn@openedhand.com>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#ifndef GUPNP_CONTEXT_H
#define GUPNP_CONTEXT_H

#include <libgssdp/gssdp-client.h>
#include <libsoup/soup-server.h>
#include <libsoup/soup-session.h>

#include "gupnp-acl.h"

G_BEGIN_DECLS

#define GUPNP_TYPE_CONTEXT \
                (gupnp_context_get_type ())

G_DECLARE_DERIVABLE_TYPE (GUPnPContext, gupnp_context, GUPNP, CONTEXT, GSSDPClient)

struct _GUPnPContextClass {
        GSSDPClientClass parent_class;

        /* future padding */
        /*<private>*/
        /**
         * _gupnp_reserved1:(skip):
         *
         * Padding
         */
        void (* _gupnp_reserved1) (void);
        /**
         * _gupnp_reserved2:(skip):
         */
        void (* _gupnp_reserved2) (void);
        void (* _gupnp_reserved3) (void);
        void (* _gupnp_reserved4) (void);
};

G_DEPRECATED_FOR(gupnp_context_new_for_address)
GUPnPContext *
gupnp_context_new (const char *iface, guint port, GError **error);

GUPnPContext *
gupnp_context_new_for_address (GInetAddress *addr,
                               guint16 port,
                               GSSDPUDAVersion uda_version,
                               GError **error);

GUPnPContext *
gupnp_context_new_full (const char *iface,
                        GInetAddress *addr,
                        guint16 port,
                        GSSDPUDAVersion uda_version,
                        GError **error);

guint
gupnp_context_get_port                 (GUPnPContext *context);

SoupServer *
gupnp_context_get_server               (GUPnPContext *context);

SoupSession *
gupnp_context_get_session              (GUPnPContext *context);

void
gupnp_context_set_subscription_timeout (GUPnPContext *context,
                                        guint         timeout);

guint
gupnp_context_get_subscription_timeout (GUPnPContext *context);

void
gupnp_context_set_default_language     (GUPnPContext *context,
                                        const char   *language);

const char *
gupnp_context_get_default_language     (GUPnPContext *context);

void
gupnp_context_host_path                (GUPnPContext *context,
                                        const char   *local_path,
                                        const char   *server_path);

gboolean
gupnp_context_host_path_for_agent      (GUPnPContext *context,
                                        const char   *local_path,
                                        const char   *server_path,
                                        GRegex       *user_agent);

void
gupnp_context_unhost_path              (GUPnPContext *context,
                                        const char   *server_path);

GUPnPAcl *
gupnp_context_get_acl                  (GUPnPContext *context);

void
gupnp_context_set_acl                  (GUPnPContext *context,
                                        GUPnPAcl     *acl);

void
gupnp_context_add_server_handler       (GUPnPContext *context,
                                        gboolean use_acl,
                                        const char *path,
                                        SoupServerCallback callback,
                                        gpointer user_data,
                                        GDestroyNotify destroy);

void
gupnp_context_remove_server_handler    (GUPnPContext *context,
                                        const char *path);

char *
gupnp_context_rewrite_uri              (GUPnPContext *context,
                                        const char *uri);
G_END_DECLS

#endif /* GUPNP_CONTEXT_H */