]> saetta.ns0.it Git - libzakcgi/commitdiff
If boundary in ZakCgiMain::parse_stdin, it tries to find it on envirenment.
authorAndrea Zagli <azagli@libero.it>
Mon, 29 Jun 2015 08:11:50 +0000 (10:11 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 29 Jun 2015 08:12:03 +0000 (10:12 +0200)
src/main.c
tests/env.c

index bcd981fe824cbc027b5df377fc8f019dcdea4406..880ddf8e2297f075b668838b6b6b3cc8a1a0cf83 100644 (file)
@@ -451,6 +451,24 @@ GHashTable
 
        ht = NULL;
 
+    content_type = (gchar *)g_getenv ("CONTENT_TYPE");
+       gchar **splitted = g_strsplit (content_type, ";", -1);
+       if (g_strv_length (splitted) > 1
+               && boundary == NULL)
+         {
+                       gchar **boundary_splitted = g_strsplit (splitted[1], "=", 2);
+                       _boundary = g_strdup_printf ("--%s", boundary_splitted[1]);
+                       g_strfreev (boundary_splitted);
+         }
+       else
+         {
+               if (boundary != NULL)
+                 {
+                       _boundary = g_strdup_printf ("--%s", boundary);                 
+                 }
+         }
+       g_strfreev (splitted);
+
        env = g_getenv ("CONTENT_LENGTH");
        if (env != NULL)
                {
@@ -459,8 +477,6 @@ GHashTable
                                {
                                        ht = g_hash_table_new (g_str_hash, g_str_equal);
 
-                                       _boundary = g_strdup_printf ("--%s", boundary);
-
                                        i = 0;
                                        do
                                                {
index d63504f7c43c3ded20db6577533e4ad50b93c684..a4bb7ddc187bcd5d5d88b4ca49cdac87cc204edc 100644 (file)
@@ -54,7 +54,8 @@ main (int argc, char *argv[])
                                {
                                        gchar **boundary = g_strsplit (splitted[1], "=", 2);
 
-                                       ht = zak_cgi_main_parse_stdin (env, boundary[1]);
+                                       /*ht = zak_cgi_main_parse_stdin (env, boundary[1]);*/
+                                       ht = zak_cgi_main_parse_stdin (env, NULL);
 
                                        GHashTableIter iter;