mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Format code
This commit is contained in:
parent
3dfd5d58a9
commit
ff061c96b0
@ -523,10 +523,12 @@ CivetServer::getParam(struct mg_connection *conn,
|
||||
|
||||
bool get_param_success = false;
|
||||
if (!get_param_success && formParams != NULL) {
|
||||
get_param_success = getParam(formParams, strlen(formParams), name, dst, occurrence);
|
||||
get_param_success =
|
||||
getParam(formParams, strlen(formParams), name, dst, occurrence);
|
||||
}
|
||||
if (!get_param_success && queryString != NULL) {
|
||||
get_param_success = getParam(queryString, strlen(formParams), name, dst, occurrence);
|
||||
get_param_success =
|
||||
getParam(queryString, strlen(formParams), name, dst, occurrence);
|
||||
}
|
||||
|
||||
return get_param_success;
|
||||
|
9
test/linux_shell_cgi/index.cgi
Normal file
9
test/linux_shell_cgi/index.cgi
Normal file
@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
printf "Content-Type: text/plain\r\n"
|
||||
printf "\r\n"
|
||||
|
||||
echo "This is a shell script called by CGI:"
|
||||
echo
|
||||
set
|
||||
|
5
test/python_cgi/pytest.linux.cgi
Normal file
5
test/python_cgi/pytest.linux.cgi
Normal file
@ -0,0 +1,5 @@
|
||||
#!/usr/bin/python
|
||||
import os
|
||||
print("Content-Type: text/plain \n\n")
|
||||
print("This is from python")
|
||||
|
Loading…
x
Reference in New Issue
Block a user