]> saetta.ns0.it Git - libzakcgi/commitdiff
ZakCgiMain::get_cookies now returns GValue.
authorAndrea Zagli <azagli@libero.it>
Sun, 9 Aug 2015 06:35:37 +0000 (08:35 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 9 Aug 2015 06:35:37 +0000 (08:35 +0200)
src/main.c
tests/cookies.c

index c529d8038eadec401f05150f3ec20fb59fdefe37..ec03e8da9041a4e37056a31acbb0c22d4a9926d0 100644 (file)
@@ -292,6 +292,7 @@ GHashTable
        gchar *cookies;
        gchar **strv_cookies;
        gchar **parts;
+       GValue *gval;
 
        if (zakcgimain != NULL)
                {
@@ -317,7 +318,10 @@ GHashTable
                        for (i = 0; i < l; i++)
                                {
                                        parts = g_strsplit (strv_cookies[i], "=", 2);
-                                       g_hash_table_replace (ht, g_strstrip (g_strdup (parts[0])), g_strstrip (g_strdup (parts[1])));
+                                       gval = (GValue *)g_new0 (GValue, 1);
+                                       g_value_init (gval, G_TYPE_STRING);
+                                       g_value_take_string (gval, g_strstrip (g_strdup (parts[1])));
+                                       g_hash_table_replace (ht, g_strstrip (g_strdup (parts[0])), gval);
                                        g_strfreev (parts);
                                }
                }
@@ -355,7 +359,7 @@ gchar
                        while (g_hash_table_iter_next (&iter, &key, &value))
                                {
                                        g_string_append_printf (str, "<tr><td>%s</td><td>%s</td></tr>\n",
-                                                               (gchar *)key, (gchar *)value);
+                                                               (gchar *)key, g_value_get_string ((GValue *)value));
                                }
 
                        g_string_append_printf (str, "</table>\n");
index 732d7778f333573e98c185eb1b7b4ba38e8ea9a0..9843ed0fe611b636ac204f0628f0ecce8834c6c0 100644 (file)
 int
 main (int argc, char *argv[])
 {
+       ZakCgiMain *zakcgimain;
        gchar *env;
        GString *str;
        GString *header;
        GHashTable *ht;
 
-       env = zak_cgi_main_dump_cookies (NULL);
+       zakcgimain = zak_cgi_main_new ();
+       env = zak_cgi_main_dump_cookies (zakcgimain);
 
        str = g_string_new ("<html>\n"
                            "<head><title>Cookies</title></head>\n"