add lua plugin support
[project/uhttpd.git] / main.c
diff --git a/main.c b/main.c
index ab6fbb0..cefd4ab 100644 (file)
--- a/main.c
+++ b/main.c
@@ -84,20 +84,14 @@ static void uh_config_parse(void)
 
                        conf.error_handler = strdup(col1);
                }
-#ifdef HAVE_CGI
                else if ((line[0] == '*') && (strchr(line, ':') != NULL)) {
                        if (!(col1 = strchr(line, '*')) || (*col1++ = 0) ||
                                !(col2 = strchr(col1, ':')) || (*col2++ = 0) ||
                                !(eol = strchr(col2, '\n')) || (*eol++  = 0))
                                continue;
 
-                       if (!uh_interpreter_add(col1, col2))
-                               fprintf(stderr,
-                                               "Unable to add interpreter %s for extension %s: "
-                                               "Out of memory\n", col2, col1
-                               );
+                       uh_interpreter_add(col1, col2);
                }
-#endif
        }
 
        fclose(c);
@@ -335,6 +329,15 @@ int main(int argc, char **argv)
                case 'K':
                        tls_key = optarg;
                        break;
+#ifdef HAVE_LUA
+               case 'l':
+                       conf.lua_prefix = optarg;
+                       break;
+
+               case 'L':
+                       conf.lua_handler = optarg;
+                       break;
+#endif
                default:
                        return usage(argv[0]);
                }
@@ -363,6 +366,17 @@ int main(int argc, char **argv)
 #endif
        }
 
+#ifdef HAVE_LUA
+       if (conf.lua_handler || conf.lua_prefix) {
+               if (!conf.lua_handler || !conf.lua_prefix) {
+                       fprintf(stderr, "Need handler and prefix to enable Lua support\n");
+                       return 1;
+               }
+               if (uh_plugin_init("uhttpd_lua.so"))
+                       return 1;
+       }
+#endif
+
        /* fork (if not disabled) */
        if (!nofork) {
                switch (fork()) {