return ht;
}
+void
+zak_cgi_main_redirect (const gchar *url)
+{
+ g_printf ("%s%s%c%c\n",
+ "Location: ",
+ url,
+ 13, 10);
+}
+
/* PRIVATE */
static void
zak_cgi_main_set_property (GObject *object,
--- /dev/null
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that 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 General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <main.h>
+
+int
+main (int argc, char *argv[])
+{
+ GHashTable *ht_env;
+
+ ht_env = zak_cgi_main_get_parameters ();
+
+ zak_cgi_main_redirect ((const gchar *)g_hash_table_lookup (ht_env, "redirectto"));
+
+ g_hash_table_destroy (ht_env);
+
+ return 0;
+}
+