Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCGI (0.35 sec)

  1. src/net/http/cgi/cgi_main.go

    	case "/bar", "/test.cgi", "/myscript/bar", "/test.cgi/extrapath":
    		testCGI()
    		return
    	}
    	childCGIProcess()
    }
    
    // testCGI is a CGI program translated from a Perl program to complete host_test.
    // test cases in host_test should be provided by testCGI.
    func testCGI() {
    	req, err := Request()
    	if err != nil {
    		panic(err)
    	}
    
    	err = req.ParseForm()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top