summaryrefslogtreecommitdiff
path: root/rest/rest-proxy-auth.h
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-06-12 19:10:57 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2012-06-28 12:33:48 +0200
commit948e5d908e1a9cf25375668d9167da7051021ce6 (patch)
treedf6182414a946a2d8c9b9b82293ed9869442ee8e /rest/rest-proxy-auth.h
parenta61a286cf9d875c462d6d06596afb234314319aa (diff)
downloadlibrest-948e5d908e1a9cf25375668d9167da7051021ce6.tar.gz
Introduce RestProxyAuth type
This will be used by the RestProxy authentication code to be able to "pause" the sending of the current message. This will give applications the opportunity to get back to the main loop to do the authentication work before resuming the current request. https://bugzilla.gnome.org/show_bug.cgi?id=658937
Diffstat (limited to 'rest/rest-proxy-auth.h')
-rw-r--r--rest/rest-proxy-auth.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/rest/rest-proxy-auth.h b/rest/rest-proxy-auth.h
new file mode 100644
index 0000000..9761f75
--- /dev/null
+++ b/rest/rest-proxy-auth.h
@@ -0,0 +1,69 @@
+/*
+ * librest - RESTful web services access
+ * Copyright (c) 2012, Red Hat, Inc.
+ *
+ * Authors: Christophe Fergeau <cfergeau@redhat.com>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU Lesser General Public License,
+ * version 2.1, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope 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 program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
+#ifndef _REST_PROXY_AUTH
+#define _REST_PROXY_AUTH
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define REST_TYPE_PROXY_AUTH rest_proxy_auth_get_type()
+
+#define REST_PROXY_AUTH(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), REST_TYPE_PROXY_AUTH, RestProxyAuth))
+
+#define REST_PROXY_AUTH_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), REST_TYPE_PROXY_AUTH, RestProxyAuthClass))
+
+#define REST_IS_PROXY_AUTH(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), REST_TYPE_PROXY_AUTH))
+
+#define REST_IS_PROXY_AUTH_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), REST_TYPE_PROXY_AUTH))
+
+#define REST_PROXY_AUTH_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), REST_TYPE_PROXY_AUTH, RestProxyAuthClass))
+
+typedef struct _RestProxyAuthPrivate RestProxyAuthPrivate;
+
+/**
+ * RestProxyAuth:
+ *
+ * #RestProxyAuth has no publicly available members.
+ */
+typedef struct {
+ GObject parent;
+ RestProxyAuthPrivate *priv;
+} RestProxyAuth;
+
+typedef struct {
+ GObjectClass parent_class;
+ /*< private >*/
+ /* padding for future expansion */
+ gpointer _padding_dummy[8];
+} RestProxyAuthClass;
+
+GType rest_proxy_auth_get_type (void);
+
+G_END_DECLS
+
+#endif /* _REST_PROXY_AUTH */