aboutsummaryrefslogtreecommitdiff
path: root/src/citrix-server.h
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2014-11-02 20:44:45 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2014-11-02 20:44:45 +0100
commitfdc39509763f7d60429b903474916684da6653eb (patch)
treea44e03a9935392ea693088f25a37332cfffa9cb6 /src/citrix-server.h
downloadremote-logon-service-fdc39509763f7d60429b903474916684da6653eb.tar.gz
remote-logon-service-fdc39509763f7d60429b903474916684da6653eb.tar.bz2
remote-logon-service-fdc39509763f7d60429b903474916684da6653eb.zip
Imported Upstream version 1.0.0upstream/1.0.0
Diffstat (limited to 'src/citrix-server.h')
-rw-r--r--src/citrix-server.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/citrix-server.h b/src/citrix-server.h
new file mode 100644
index 0000000..058b663
--- /dev/null
+++ b/src/citrix-server.h
@@ -0,0 +1,57 @@
+/*
+ * Copyright © 2012 Canonical Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 3, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranties of
+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Ted Gould <ted@canonical.com>
+ */
+
+#ifndef __CITRIX_SERVER_H__
+#define __CITRIX_SERVER_H__
+
+#include <glib-object.h>
+#include <json-glib/json-glib.h>
+#include "server.h"
+
+G_BEGIN_DECLS
+
+#define CITRIX_SERVER_TYPE (citrix_server_get_type ())
+#define CITRIX_SERVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CITRIX_SERVER_TYPE, CitrixServer))
+#define CITRIX_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CITRIX_SERVER_TYPE, CitrixServerClass))
+#define IS_CITRIX_SERVER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CITRIX_SERVER_TYPE))
+#define IS_CITRIX_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CITRIX_SERVER_TYPE))
+#define CITRIX_SERVER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CITRIX_SERVER_TYPE, CitrixServerClass))
+
+typedef struct _CitrixServer CitrixServer;
+typedef struct _CitrixServerClass CitrixServerClass;
+
+struct _CitrixServerClass {
+ ServerClass parent_class;
+};
+
+struct _CitrixServer {
+ Server parent;
+
+ gchar * username;
+ gchar * password;
+ gchar * domain;
+ gboolean domain_required;
+};
+
+GType citrix_server_get_type (void);
+Server * citrix_server_new_from_keyfile (GKeyFile * keyfile, const gchar * name);
+Server * citrix_server_new_from_json (JsonObject * object);
+
+G_END_DECLS
+
+#endif