summaryrefslogtreecommitdiff
path: root/rest/rest-proxy-call-private.h
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2014-09-02 16:27:50 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2014-09-03 10:23:44 +0200
commit73984ab8bad002080885df1a12efd97b35ba7810 (patch)
tree5518a5007aec06f45a13ee82fbf34238d78b1ac4 /rest/rest-proxy-call-private.h
parent3ec0311b5f38f55784c63925600ff66263c20b9e (diff)
downloadlibrest-73984ab8bad002080885df1a12efd97b35ba7810.tar.gz
Move RestProxyCallPrivate to rest-proxy-call.c
It was in a separate rest-proxy-call.h header which allowed derived classes to access RestProxyCall private data without any control. Better to go through explicit methods to do that. https://bugzilla.gnome.org/show_bug.cgi?id=735919
Diffstat (limited to 'rest/rest-proxy-call-private.h')
-rw-r--r--rest/rest-proxy-call-private.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/rest/rest-proxy-call-private.h b/rest/rest-proxy-call-private.h
index 573794e..f2d102b 100644
--- a/rest/rest-proxy-call-private.h
+++ b/rest/rest-proxy-call-private.h
@@ -29,32 +29,6 @@
G_BEGIN_DECLS
-typedef struct _RestProxyCallAsyncClosure RestProxyCallAsyncClosure;
-typedef struct _RestProxyCallContinuousClosure RestProxyCallContinuousClosure;
-typedef struct _RestProxyCallUploadClosure RestProxyCallUploadClosure;
-
-struct _RestProxyCallPrivate {
- gchar *method;
- gchar *function;
- GHashTable *headers;
- RestParams *params;
- /* The real URL we're about to invoke */
- gchar *url;
-
- GHashTable *response_headers;
- goffset length;
- gchar *payload;
- guint status_code;
- gchar *status_message;
-
- GCancellable *cancellable;
- gulong cancel_sig;
-
- RestProxy *proxy;
-
- RestProxyCallAsyncClosure *cur_call_closure;
-};
-
const char *rest_proxy_call_get_url (RestProxyCall *call);
G_END_DECLS