aboutsummaryrefslogtreecommitdiff
path: root/src/rdp-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/rdp-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/rdp-server.h')
-rw-r--r--src/rdp-server.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/rdp-server.h b/src/rdp-server.h
new file mode 100644
index 0000000..297c8ef
--- /dev/null
+++ b/src/rdp-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 __RDP_SERVER_H__
+#define __RDP_SERVER_H__
+
+#include <glib-object.h>
+#include <json-glib/json-glib.h>
+#include "server.h"
+
+G_BEGIN_DECLS
+
+#define RDP_SERVER_TYPE (rdp_server_get_type ())
+#define RDP_SERVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), RDP_SERVER_TYPE, RdpServer))
+#define RDP_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), RDP_SERVER_TYPE, RdpServerClass))
+#define IS_RDP_SERVER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), RDP_SERVER_TYPE))
+#define IS_RDP_SERVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), RDP_SERVER_TYPE))
+#define RDP_SERVER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), RDP_SERVER_TYPE, RdpServerClass))
+
+typedef struct _RdpServer RdpServer;
+typedef struct _RdpServerClass RdpServerClass;
+
+struct _RdpServerClass {
+ ServerClass parent_class;
+};
+
+struct _RdpServer {
+ Server parent;
+
+ gchar * username;
+ gchar * password;
+ gchar * domain;
+ gboolean domain_required;
+};
+
+GType rdp_server_get_type (void);
+Server * rdp_server_new_from_keyfile (GKeyFile * keyfile, const gchar * name);
+Server * rdp_server_new_from_json (JsonObject * object);
+
+G_END_DECLS
+
+#endif