diff --git a/configure b/configure index 0b6fc83e..5715cc1c 100755 --- a/configure +++ b/configure @@ -1757,14 +1757,14 @@ Optional Features: --enable-captive-portal enable server captive portal mode [default=no] --enable-thread-approach enable server thread approach support [default=no] --enable-HIS enable HTTP Inotify Support [default=no] - --enable-log enable client and server log support [default=no] + --enable-log enable client and server log support [default=yes] --enable-GSDS enable GDB Stack Dump Support [default=no] --enable-HCRS enable Cache Request Support [default=no] - --enable-HPRS enable Homogeneous Pipeline Request Support [default=yes] + --enable-HPRS enable Homogeneous Pipeline Request Support [default=no] --enable-http2 enable HTTP/2 support [default=no] --enable-classic enable server classic model support [default=no] --enable-throttling enable server bandwidth throttling support [default=no] - --enable-alias enable alias URI support [default=no] + --enable-alias enable alias URI support [default=yes] --enable-welcome enable welcome message support [default=no] --enable-ACL enable ACL filtering support [default=no] --enable-RFC1918 enable RFC1918 filtering support [default=no] @@ -24539,10 +24539,10 @@ if test "${enable_log+set}" = set; then : fi if test -z "$enable_log"; then - if test "$enable_debug" = "yes"; then - enable_log="yes" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_log="no" + else + enable_log="yes" fi fi if test "$enable_log" != "yes"; then @@ -24583,10 +24583,10 @@ if test "${enable_HCRS+set}" = set; then : fi if test -z "$enable_HCRS"; then - if test "$enable_debug" = "yes"; then - enable_HCRS="no" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_HCRS="yes" + else + enable_HCRS="no" fi fi if test "$enable_HCRS" != "yes"; then @@ -24605,10 +24605,10 @@ if test "${enable_HPRS+set}" = set; then : fi if test -z "$enable_HPRS"; then - if test "$enable_debug" = "yes"; then - enable_HPRS="no" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_HPRS="yes" + else + enable_HPRS="no" fi fi if test "$enable_HPRS" != "yes"; then @@ -24681,10 +24681,10 @@ if test "${enable_alias+set}" = set; then : fi if test -z "$enable_alias"; then - if test "$enable_debug" = "yes"; then - enable_alias="yes" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_alias="no" + else + enable_alias="yes" fi fi if test "$enable_alias" = "yes"; then diff --git a/examples/IR/ir_session.h b/examples/IR/ir_session.h index 0686b913..070ababa 100644 --- a/examples/IR/ir_session.h +++ b/examples/IR/ir_session.h @@ -91,12 +91,14 @@ public: is >> vec; sz = vec.size(); +# endif last_access = u_now->tv_sec; } // STREAMS +#ifdef U_STDCPP_ENABLE friend istream& operator>>(istream& is, IRDataSession& d) { d.fromStream(is); return is; } friend ostream& operator<<(ostream& os, IRDataSession& d) { d.toStream(os); return os; } #endif diff --git a/examples/XAdES/client.cpp b/examples/XAdES/client.cpp index 09a50bb7..33fe891a 100644 --- a/examples/XAdES/client.cpp +++ b/examples/XAdES/client.cpp @@ -46,7 +46,7 @@ public: // COSTRUTTORE - UClientXAdES(UFileConfig* cfg) : USOAPClient(cfg) {} + explicit UClientXAdES(UFileConfig* cfg) : USOAPClient(cfg) {} virtual ~UClientXAdES() {} // OBJECT FOR METHOD REQUEST diff --git a/examples/XAdES/sign.cpp b/examples/XAdES/sign.cpp index 1974bbe9..e74eb133 100644 --- a/examples/XAdES/sign.cpp +++ b/examples/XAdES/sign.cpp @@ -425,7 +425,6 @@ public: UString completeCertificateRef(U_CAPACITY), completeCertificateRefs(U_CAPACITY); uint32_t i, n; - long CASerialNumber; UVector vec_CACertificateValue; UString item(U_CAPACITY), CACertificateValue(U_CAPACITY), CAIssuerName, CACertificate, DigestValue(U_CAPACITY); @@ -437,7 +436,6 @@ public: CAIssuerName = ca->getIssuerForLDAP(); CACertificate = ca->getEncoded("DER"); - CASerialNumber = ca->getSerialNumber(); DigestValue.setEmpty(); @@ -447,7 +445,7 @@ public: U_STRING_TO_TRACE(digest_algorithm), U_STRING_TO_TRACE(DigestValue), U_STRING_TO_TRACE(CAIssuerName), - CASerialNumber); + ca->getSerialNumber()); (void) completeCertificateRef.append(item); diff --git a/examples/XAdES/transforms.h b/examples/XAdES/transforms.h index 177f1cfa..89e2b39b 100644 --- a/examples/XAdES/transforms.h +++ b/examples/XAdES/transforms.h @@ -479,7 +479,7 @@ public: // COSTRUTTORI - UTranformInputURI(const char* uri); + explicit UTranformInputURI(const char* uri); virtual ~UTranformInputURI() { diff --git a/examples/csp/cspclient.cpp b/examples/csp/cspclient.cpp index 92936740..a061d6fe 100644 --- a/examples/csp/cspclient.cpp +++ b/examples/csp/cspclient.cpp @@ -19,7 +19,7 @@ public: // COSTRUTTORE - UClientCSP(UFileConfig* cfg) : USOAPClient(cfg) {} + explicit UClientCSP(UFileConfig* cfg) : USOAPClient(cfg) {} virtual ~UClientCSP() {} // OBJECT FOR METHOD REQUEST diff --git a/examples/csp/cspclient_rpc.cpp b/examples/csp/cspclient_rpc.cpp index 1c5a73cd..db8e5c94 100644 --- a/examples/csp/cspclient_rpc.cpp +++ b/examples/csp/cspclient_rpc.cpp @@ -19,7 +19,7 @@ public: // COSTRUTTORE - UClientCSP(UFileConfig* cfg) : URPCClient(cfg) {} + explicit UClientCSP(UFileConfig* cfg) : URPCClient(cfg) {} virtual ~UClientCSP() {} // OBJECT FOR METHOD REQUEST diff --git a/examples/doc_classifier/DocumentClassifier.cpp b/examples/doc_classifier/DocumentClassifier.cpp index eb4f26f2..93c06d59 100644 --- a/examples/doc_classifier/DocumentClassifier.cpp +++ b/examples/doc_classifier/DocumentClassifier.cpp @@ -84,7 +84,7 @@ int DocumentClassifier::verifyCallback(int ok, X509_STORE_CTX* ctx) // callback if (flag_ricorsione || verify_result == false) U_RETURN(ok); - if (ok == false) U_RETURN(1); + if (ok == 0) U_RETURN(1); flag_ricorsione = true; diff --git a/examples/doc_classifier/DocumentClassifier.h b/examples/doc_classifier/DocumentClassifier.h index 3502c7fd..4088216e 100644 --- a/examples/doc_classifier/DocumentClassifier.h +++ b/examples/doc_classifier/DocumentClassifier.h @@ -36,7 +36,7 @@ public: UTree* node_to_delete; UString description, content_type, filename; - Element(Type t) : type(t) + explicit Element(Type t) : type(t) { U_TRACE_REGISTER_OBJECT(5, Element, "%d", t) @@ -117,8 +117,8 @@ public: // COSTRUTTORE - DocumentClassifier(const char* filename); - ~DocumentClassifier(); + explicit DocumentClassifier(const char* filename); + ~DocumentClassifier(); // SERVICES diff --git a/examples/download_accelerator/main.cpp b/examples/download_accelerator/main.cpp index 046e838b..67f17b52 100644 --- a/examples/download_accelerator/main.cpp +++ b/examples/download_accelerator/main.cpp @@ -229,7 +229,7 @@ public: U_APPEND_LITERAL(" "); - (void) sprintf(p, " ETA %02d:%02d", eta_min, eta_sec); + (void) sprintf(p, " ETA %02u:%02u", eta_min, eta_sec); } else { @@ -237,7 +237,7 @@ public: if (eta_hrs < 10) *p++ = ' '; - (void) sprintf(p, " ETA %d:%02d:%02d", eta_hrs, eta_min, eta_sec); + (void) sprintf(p, " ETA %u:%02u:%02u", eta_hrs, eta_min, eta_sec); } p += u__strlen(p, __PRETTY_FUNCTION__); @@ -616,8 +616,8 @@ public: rcvsock.iSockDesc = rcvsock_fd; sndsock.iSockDesc = sndsock_fd; + int code, lag; unsigned must_continue = numhosts; - int code, startcount, hostcount, lag; int seq = 0, endcount = 0, min_lag = 100; if (rcvsock.setTimeoutRCV(50) == false) U_RETURN(false); /* transmit time must be <= min_lag / 2 */ @@ -651,7 +651,8 @@ public: */ bool sent_one = false; - startcount = hostcount = endcount; + int startcount = endcount; + int hostcount = endcount; must_continue = 0; do { diff --git a/examples/http_header/HttpCookie.cpp b/examples/http_header/HttpCookie.cpp index 2140a0ac..733e32f9 100644 --- a/examples/http_header/HttpCookie.cpp +++ b/examples/http_header/HttpCookie.cpp @@ -118,21 +118,20 @@ HttpCookie::HttpCookie(const char* name_, unsigned name_len, const char* value_, (void) cookie_split(tvec, buffer, "="); - const char* s; - const char* p; const char* pc; + unsigned i, num; const char* delim; - unsigned i, num, size; for (i = 0; i < tvec.size(); i++) { - s = tvec[i].data(); + const char* s = tvec[i].data(); /* modifica stefano */ - size = tvec[i].size(); + unsigned size = tvec[i].size(); pc = (const char*) memrchr(s, ',', size); - p = (const char*) memrchr(s, ';', size); + + const char* p = (const char*) memrchr(s, ';', size); if (pc > p) { diff --git a/examples/lcsp/lcspclient.cpp b/examples/lcsp/lcspclient.cpp index e9a3a0da..0fd29a0d 100644 --- a/examples/lcsp/lcspclient.cpp +++ b/examples/lcsp/lcspclient.cpp @@ -19,7 +19,7 @@ public: // COSTRUTTORE - UClientLCSP(UFileConfig* cfg) : USOAPClient(cfg) {} + explicit UClientLCSP(UFileConfig* cfg) : USOAPClient(cfg) {} virtual ~UClientLCSP() {} // OBJECT FOR METHOD REQUEST diff --git a/examples/lcsp/lcspclient_rpc.cpp b/examples/lcsp/lcspclient_rpc.cpp index 125a2010..ebb2e251 100644 --- a/examples/lcsp/lcspclient_rpc.cpp +++ b/examples/lcsp/lcspclient_rpc.cpp @@ -19,7 +19,7 @@ public: // COSTRUTTORE - UClientLCSP(UFileConfig* cfg) : URPCClient(cfg) {} + explicit UClientLCSP(UFileConfig* cfg) : URPCClient(cfg) {} virtual ~UClientLCSP() {} // OBJECT FOR METHOD REQUEST diff --git a/examples/rsign/rsignclient.cpp b/examples/rsign/rsignclient.cpp index 5a3a9aca..9ccee775 100644 --- a/examples/rsign/rsignclient.cpp +++ b/examples/rsign/rsignclient.cpp @@ -23,7 +23,7 @@ public: // COSTRUTTORE - UClientRSIGN(UFileConfig* cfg) : USOAPClient(cfg) {} + explicit UClientRSIGN(UFileConfig* cfg) : USOAPClient(cfg) {} virtual ~UClientRSIGN() {} // OBJECT FOR METHOD REQUEST diff --git a/examples/rsign/rsignclient_rpc.cpp b/examples/rsign/rsignclient_rpc.cpp index a85549a1..d02d5c78 100644 --- a/examples/rsign/rsignclient_rpc.cpp +++ b/examples/rsign/rsignclient_rpc.cpp @@ -21,7 +21,7 @@ public: // COSTRUTTORE - UClientRSIGN(UFileConfig* cfg) : URPCClient(cfg) {} + explicit UClientRSIGN(UFileConfig* cfg) : URPCClient(cfg) {} virtual ~UClientRSIGN() {} // OBJECT FOR METHOD REQUEST diff --git a/include/ulib/examples/wi_auth_declaration.h b/include/ulib/examples/wi_auth_declaration.h index 9c41bae3..35479379 100644 --- a/include/ulib/examples/wi_auth_declaration.h +++ b/include/ulib/examples/wi_auth_declaration.h @@ -4334,11 +4334,11 @@ static void GET_get_config() U_INTERNAL_ASSERT(label) U_INTERNAL_ASSERT(netmask) - uint32_t lbl = label.strtol(); - _body = UStringExt::substitute(_body, U_CONSTANT_TO_PARAM("172...0/24"), U_STRING_TO_PARAM(netmask)); - buffer.snprintf("LOCAL_NETWORK_LABEL %06x", lbl); + uint32_t lbl = label.strtol(); + + buffer.snprintf("LOCAL_NETWORK_LABEL %u", lbl); _body = UStringExt::substitute(_body, U_CONSTANT_TO_PARAM("LOCAL_NETWORK_LABEL ap"), U_STRING_TO_PARAM(buffer)); diff --git a/include/ulib/internal/chttp.h b/include/ulib/internal/chttp.h index 85213e78..24f25f4e 100644 --- a/include/ulib/internal/chttp.h +++ b/include/ulib/internal/chttp.h @@ -319,7 +319,7 @@ enum HttpRequestType { /** * The hostname of your server from header's request. * The difference between U_HTTP_HOST_.. and U_HTTP_VHOST_.. is that - * U_HTTP_HOST_.. can include the :PORT text, and U_HTTP_VHOST_.. only the name + * U_HTTP_HOST_.. can include the :PORT text, and U_HTTP_VHOST_.. only the name */ #define U_HTTP_HOST_TO_PARAM u_clientimage_info.http_info.host, U_http_host_len diff --git a/include/ulib/internal/common.h b/include/ulib/internal/common.h index 72e39853..e5747d2f 100644 --- a/include/ulib/internal/common.h +++ b/include/ulib/internal/common.h @@ -14,7 +14,7 @@ #ifndef ULIB_INTERNAL_COMMON_H #define ULIB_INTERNAL_COMMON_H 1 -// Manage file to include +// Manage which file headers to include #include diff --git a/include/ulib/net/server/usp_macro.h b/include/ulib/net/server/usp_macro.h index e0cfd9d0..d524ff23 100644 --- a/include/ulib/net/server/usp_macro.h +++ b/include/ulib/net/server/usp_macro.h @@ -25,6 +25,7 @@ #define USP_PRINTF_ADD(fmt,args...) UClientImage_Base::wbuffer->snprintf_add(fmt , ##args) #define USP_JSON_PUTS(json) UValue::stringify(*UClientImage_Base::wbuffer, (json)) +#define USP_JSON_REQUEST_PARSE(obj) JSON_parse(*UClientImage_Base::body, (obj)) #define USP_JSON_stringify(json,class_name,obj) ((json).toJSON(UJsonTypeHandler(obj)), USP_JSON_PUTS(json)) #define USP_XML_PUTS(string) \ diff --git a/m4/ac_compilation_options.m4 b/m4/ac_compilation_options.m4 index 07bfd7a1..c3b91a1d 100644 --- a/m4/ac_compilation_options.m4 +++ b/m4/ac_compilation_options.m4 @@ -156,12 +156,12 @@ AC_DEFUN([AC_COMPILATION_OPTIONS],[ AC_MSG_CHECKING(if you want to enable client and server log support) AC_ARG_ENABLE(log, - [ --enable-log enable client and server log support [[default=no]]]) + [ --enable-log enable client and server log support [[default=yes]]]) if test -z "$enable_log"; then - if test "$enable_debug" = "yes"; then - enable_log="yes" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_log="no" + else + enable_log="yes" fi fi if test "$enable_log" != "yes"; then @@ -188,10 +188,10 @@ AC_DEFUN([AC_COMPILATION_OPTIONS],[ AC_ARG_ENABLE(HCRS, [ --enable-HCRS enable Cache Request Support [[default=no]]]) if test -z "$enable_HCRS"; then - if test "$enable_debug" = "yes"; then - enable_HCRS="no" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_HCRS="yes" + else + enable_HCRS="no" fi fi if test "$enable_HCRS" != "yes"; then @@ -201,12 +201,12 @@ AC_DEFUN([AC_COMPILATION_OPTIONS],[ AC_MSG_CHECKING(if you want to enable homogeneous pipeline request support) AC_ARG_ENABLE(HPRS, - [ --enable-HPRS enable Homogeneous Pipeline Request Support [[default=yes]]]) + [ --enable-HPRS enable Homogeneous Pipeline Request Support [[default=no]]]) if test -z "$enable_HPRS"; then - if test "$enable_debug" = "yes"; then - enable_HPRS="no" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_HPRS="yes" + else + enable_HPRS="no" fi fi if test "$enable_HPRS" != "yes"; then @@ -249,12 +249,12 @@ AC_DEFUN([AC_COMPILATION_OPTIONS],[ AC_MSG_CHECKING(if you want to enable alias URI support) AC_ARG_ENABLE(alias, - [ --enable-alias enable alias URI support [[default=no]]]) + [ --enable-alias enable alias URI support [[default=yes]]]) if test -z "$enable_alias"; then - if test "$enable_debug" = "yes"; then - enable_alias="yes" - else + if test "$USP_FLAGS" = "-DAS_cpoll_cppsp_DO"; then enable_alias="no" + else + enable_alias="yes" fi fi if test "$enable_alias" = "yes"; then diff --git a/src/ulib/base/utility.c b/src/ulib/base/utility.c index fabf2e5c..296b1d84 100644 --- a/src/ulib/base/utility.c +++ b/src/ulib/base/utility.c @@ -1155,7 +1155,7 @@ void u_get_memusage(unsigned long* vsz, unsigned long* rss) * ----------------------------------------------------------------------------------------------------------------------------- */ - (void) fscanf(fp, "%*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %lu %ld", vsz, rss); + (void) fscanf(fp, "%*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %lu %lu", vsz, rss); (void) fclose(fp); @@ -1624,7 +1624,10 @@ __pure bool u_dosmatch(const char* restrict s, uint32_t n1, const char* restrict c1 = u__tolower(*s); if (c2 != c1 && - c2 != '?') return (flags & FNM_INVERT ? true : false); + c2 != '?') + { + return ((flags & FNM_INVERT) != 0); + } ++s; ++mask; @@ -1642,14 +1645,14 @@ __pure bool u_dosmatch(const char* restrict s, uint32_t n1, const char* restrict result = (mask >= end_mask); - return (flags & FNM_INVERT ? (result == false) : result); + return ((flags & FNM_INVERT) != 0 ? (result == false) : result); } c2 = (mask ? u__tolower(*mask) : 0); if (c2 == '*') { - if (++mask >= end_mask) return (flags & FNM_INVERT ? false : true); + if (++mask >= end_mask) return ((flags & FNM_INVERT) == 0); cp = s+1; mp = mask; @@ -1687,7 +1690,7 @@ __pure bool u_dosmatch(const char* restrict s, uint32_t n1, const char* restrict if (c2 != c1 && c2 != '?') { - return (flags & FNM_INVERT ? true : false); + return ((flags & FNM_INVERT) != 0); } ++s; @@ -1704,14 +1707,14 @@ __pure bool u_dosmatch(const char* restrict s, uint32_t n1, const char* restrict result = (mask >= end_mask); - return (flags & FNM_INVERT ? (result == false) : result); + return ((flags & FNM_INVERT) != 0 ? (result == false) : result); } c2 = *mask; if (c2 == '*') { - if (++mask >= end_mask) return (flags & FNM_INVERT ? false : true); + if (++mask >= end_mask) return ((flags & FNM_INVERT) == 0); cp = s + 1; mp = mask; @@ -1761,23 +1764,23 @@ __pure bool u_dosmatch_ext(const char* restrict s, uint32_t n1, const char* rest --n2; } - if (n2 == 1) return (flags & FNM_INVERT ? false : true); /* match */ + if (n2 == 1) return ((flags & FNM_INVERT) == 0); /* match */ while (n1) { - if (u_dosmatch_ext(s, n1, mask+1, n2-1, flags & ~FNM_INVERT)) return (flags & FNM_INVERT ? false : true); /* match */ + if (u_dosmatch_ext(s, n1, mask+1, n2-1, flags & ~FNM_INVERT)) return ((flags & FNM_INVERT) == 0); /* match */ ++s; --n1; } - return (flags & FNM_INVERT ? true : false); /* no match */ + return ((flags & FNM_INVERT) != 0); /* no match */ } break; case '?': { - if (n1 == 0) return (flags & FNM_INVERT ? true : false); /* no match */ + if (n1 == 0) return ((flags & FNM_INVERT) != 0); /* no match */ ++s; --n1; @@ -1872,7 +1875,7 @@ __pure bool u_dosmatch_ext(const char* restrict s, uint32_t n1, const char* rest U_INTERNAL_PRINT("match = %d bnot = %d", match, bnot) - if (match == false || bnot) return (flags & FNM_INVERT ? true : false); /* no match */ + if (match == false || bnot) return ((flags & FNM_INVERT) != 0); /* no match */ U_INTERNAL_PRINT("s[0] = %c n1 = %u mask[0] = %c n2 = %u", s[0], n1, mask[0], n2) @@ -1898,11 +1901,11 @@ __pure bool u_dosmatch_ext(const char* restrict s, uint32_t n1, const char* rest if ((flags & FNM_IGNORECASE) == 0) { - if (mask[0] != s[0]) return (flags & FNM_INVERT ? true : false); /* no match */ + if (mask[0] != s[0]) return ((flags & FNM_INVERT) != 0); /* no match */ } else { - if (u__tolower((unsigned char)mask[0]) != u__tolower((unsigned char)s[0])) return (flags & FNM_INVERT ? true : false); /* no match */ + if (u__tolower((unsigned char)mask[0]) != u__tolower((unsigned char)s[0])) return ((flags & FNM_INVERT) != 0); /* no match */ } ++s; @@ -1931,10 +1934,10 @@ __pure bool u_dosmatch_ext(const char* restrict s, uint32_t n1, const char* rest if (n2 == 0 && n1 == 0) { - return (flags & FNM_INVERT ? false : true); + return ((flags & FNM_INVERT) == 0); } - return (flags & FNM_INVERT ? true : false); + return ((flags & FNM_INVERT) != 0); } /** @@ -1959,7 +1962,7 @@ bool u_match_with_OR(const char* restrict s, uint32_t n1, const char* restrict m if (p_or == 0) return u_pfn_match(s, n1, mask, n2, flags); - if (u_pfn_match(s, n1, mask, (p_or - mask), flags & ~FNM_INVERT)) return (flags & FNM_INVERT ? false : true); + if (u_pfn_match(s, n1, mask, (p_or - mask), (flags & ~FNM_INVERT))) return ((flags & FNM_INVERT) == 0); mask = p_or + 1; n2 = end - mask; @@ -2859,7 +2862,7 @@ bool u_fnmatch(const char* restrict string, uint32_t n1, const char* restrict pa result = kfnmatch(pattern, string, flags, 0); - return (flags & FNM_INVERT ? (result != 0) : (result == 0)); + return ((flags & FNM_INVERT) != 0 ? (result != 0) : (result == 0)); } /* buffer type identification - Assumed an ISO-1 character set */ diff --git a/src/ulib/debug/error.cpp b/src/ulib/debug/error.cpp index c04af551..6021d30f 100644 --- a/src/ulib/debug/error.cpp +++ b/src/ulib/debug/error.cpp @@ -110,7 +110,7 @@ void UError::stackDump() // does not append a null byte to buf. It will truncate the contents (to a length of bufsiz characters), // in case the buffer is too small to hold all of the contents - char name_buf[1024] = { 0 }; + char name_buf[1024]; #if defined(U_GDB_STACK_DUMP_ENABLE) && !defined(_MSWINDOWS_) int n = readlink("/proc/self/exe", name_buf, sizeof(name_buf) - 1); @@ -159,6 +159,8 @@ void UError::stackDump() return; } } +#else + name_buf[0] = 0; #endif #ifdef HAVE_EXECINFO_H diff --git a/src/ulib/debug/error_memory.cpp b/src/ulib/debug/error_memory.cpp index beb722d9..4a26990f 100644 --- a/src/ulib/debug/error_memory.cpp +++ b/src/ulib/debug/error_memory.cpp @@ -22,9 +22,11 @@ const char* UMemoryError::getErrorType(const void* pobj) const // (ABW) Array Beyond Write | (FMR) Free Memory Read +#ifndef U_STDCPP_ENABLE + (void) sprintf(pbuffer, "[pobj = %p _this = %p - %s]", pobj, _this, (_this ? "ABW" : "FMR")); +#else uint32_t n = sprintf(pbuffer, "[pobj = %p _this = %p - %s]", pobj, _this, (_this ? "ABW" : "FMR")); -#ifdef U_STDCPP_ENABLE if (UObjectDB::fd > 0) { uint32_t l = UObjectDB::dumpObject(pbuffer+n+1, U_MAX_SIZE_PREALLOCATE-n-1, pobj); diff --git a/src/ulib/file.cpp b/src/ulib/file.cpp index 706e35eb..ca0788f1 100644 --- a/src/ulib/file.cpp +++ b/src/ulib/file.cpp @@ -475,9 +475,6 @@ char* UFile::mmap_anon_huge(uint32_t* plength, int flags) #ifdef U_LINUX if (nr_hugepages) { - char* ptr; - uint32_t length; - U_INTERNAL_DUMP("nr_hugepages = %ld rlimit_memfree = %u", nr_hugepages, rlimit_memfree) U_INTERNAL_ASSERT_EQUALS(rlimit_memfree, U_2M) @@ -485,13 +482,13 @@ char* UFile::mmap_anon_huge(uint32_t* plength, int flags) # ifdef MAP_HUGE_1GB /* (since Linux 3.8) */ if (*plength >= U_1G) { - length = (*plength + U_1G_MASK) & ~U_1G_MASK; // NB: munmap() length of MAP_HUGETLB memory must be hugepage aligned... + uint32_t length = (*plength + U_1G_MASK) & ~U_1G_MASK; // NB: munmap() length of MAP_HUGETLB memory must be hugepage aligned... U_INTERNAL_ASSERT_EQUALS(length & U_1G_MASK, 0) U_DEBUG("We are going to allocate (%u GB - %u bytes) MAP_HUGE_1GB - nfree = %u flags = %B", length / U_1G, length, nfree, flags | U_MAP_ANON_HUGE | MAP_HUGE_1GB) - ptr = (char*) U_SYSCALL(mmap, "%d,%u,%d,%d,%d,%u", U_MAP_ANON_HUGE_ADDR, length, PROT_READ | PROT_WRITE, flags | U_MAP_ANON_HUGE | MAP_HUGE_1GB, -1, 0); + char* ptr = (char*) U_SYSCALL(mmap, "%d,%u,%d,%d,%d,%u", U_MAP_ANON_HUGE_ADDR, length, PROT_READ | PROT_WRITE, flags | U_MAP_ANON_HUGE | MAP_HUGE_1GB, -1, 0); if (ptr != (char*)MAP_FAILED) { @@ -502,13 +499,13 @@ char* UFile::mmap_anon_huge(uint32_t* plength, int flags) } # endif # ifdef MAP_HUGE_2MB /* (since Linux 3.8) */ - length = (*plength + U_2M_MASK) & ~U_2M_MASK; // NB: munmap() length of MAP_HUGETLB memory must be hugepage aligned... + uint32_t length = (*plength + U_2M_MASK) & ~U_2M_MASK; // NB: munmap() length of MAP_HUGETLB memory must be hugepage aligned... U_INTERNAL_ASSERT_EQUALS(length & U_2M_MASK, 0) U_DEBUG("We are going to allocate (%u MB - %u bytes) MAP_HUGE_2MB - nfree = %u flags = %B", length / (1024U*1024U), length, nfree, flags | U_MAP_ANON_HUGE | MAP_HUGE_2MB) - ptr = (char*) U_SYSCALL(mmap, "%d,%u,%d,%d,%d,%u", U_MAP_ANON_HUGE_ADDR, length, PROT_READ | PROT_WRITE, flags | U_MAP_ANON_HUGE | MAP_HUGE_2MB, -1, 0); + char* ptr = (char*) U_SYSCALL(mmap, "%d,%u,%d,%d,%d,%u", U_MAP_ANON_HUGE_ADDR, length, PROT_READ | PROT_WRITE, flags | U_MAP_ANON_HUGE | MAP_HUGE_2MB, -1, 0); if (ptr != (char*)MAP_FAILED) { diff --git a/src/ulib/net/client/client.cpp b/src/ulib/net/client/client.cpp index ab4f835b..954e634a 100644 --- a/src/ulib/net/client/client.cpp +++ b/src/ulib/net/client/client.cpp @@ -369,7 +369,6 @@ bool UClient_Base::setUrl(const char* str, uint32_t len) char* p; char* ptr; char* dest; - uint32_t sz; char buf[U_PATH_MAX]; const char* src = uri.data(); @@ -383,7 +382,7 @@ bool UClient_Base::setUrl(const char* str, uint32_t len) if (p == 0) break; - sz = p - src + 1; + uint32_t sz = p - src + 1; U_INTERNAL_DUMP("segment = %.*S", sz, src) diff --git a/src/ulib/net/server/plugin/mod_nocat.cpp b/src/ulib/net/server/plugin/mod_nocat.cpp index 4437ab46..21b0cac8 100644 --- a/src/ulib/net/server/plugin/mod_nocat.cpp +++ b/src/ulib/net/server/plugin/mod_nocat.cpp @@ -451,7 +451,6 @@ void UNoCatPlugIn::getTraffic() #ifdef HAVE_LINUX_NETFILTER_IPV4_IPT_ACCOUNT_H UString ip(17U); uint32_t traffic; - const char* table; UModNoCatPeer* _peer; const unsigned char* bytep; struct ipt_acc_handle_ip* entry; @@ -460,7 +459,7 @@ void UNoCatPlugIn::getTraffic() { U_INTERNAL_ASSERT((*vLocalNetworkMask)[i]->spec.isNullTerminated()) - table = (*vLocalNetworkMask)[i]->spec.data(); + const char* table = (*vLocalNetworkMask)[i]->spec.data(); if (ipt->readEntries(table, true)) { diff --git a/src/ulib/net/server/plugin/usp/businesses.usp b/src/ulib/net/server/plugin/usp/businesses.usp index faa571cb..bc060e1b 100644 --- a/src/ulib/net/server/plugin/usp/businesses.usp +++ b/src/ulib/net/server/plugin/usp/businesses.usp @@ -254,7 +254,7 @@ static void usp_end_businesses() Content-Type: application/json --> @@ -7,8 +101,9 @@ U_INTERNAL_DUMP("U_HTTP_CTYPE = %.*S", U_HTTP_CTYPE_TO_TRACE) if (U_HTTP_CTYPE_STREQ("application/jsonrequest")) { UValue json; + Request request; - if (json.parse(*UClientImage_Base::body)) USP_PUTS_STRING(json.output()); - else USP_PUTS_CONSTANT("{}"); + if (USP_JSON_REQUEST_PARSE(request)) USP_JSON_stringify(json, Request, request); + else USP_PUTS_CONSTANT("{}"); } --> diff --git a/src/ulib/net/server/server.cpp b/src/ulib/net/server/server.cpp index 94aaedec..cfd8641c 100644 --- a/src/ulib/net/server/server.cpp +++ b/src/ulib/net/server/server.cpp @@ -3095,12 +3095,17 @@ retry: pid = UProcess::waitpid(-1, &status, WNOHANG); // NB: to avoid too much if (pid > 0) { - char buffer[128]; - --UNotifier::num_connection; - U_SRV_LOG("Child (pid %d) exited with value %d (%s), down to %u children", - pid, status, UProcess::exitInfo(buffer, status), UNotifier::num_connection - UNotifier::min_connection); +# ifndef U_LOG_DISABLE + if (isLog()) + { + char buffer[128]; + + ULog::log("%sChild (pid %d) exited with value %d (%s), down to %u children", + UServer_Base::mod_name[0], pid, status, UProcess::exitInfo(buffer, status), UNotifier::num_connection - UNotifier::min_connection); + } +# endif goto retry; } @@ -3586,25 +3591,30 @@ void UServer_Base::run() u_bind2cpu(&cpuset, rkids % u_num_cpu); // Pin the process to a particular cpu... -# if !defined(U_LOG_DISABLE) || defined(HAVE_SCHED_GETCPU) - char buffer[64]; - uint32_t sz = 0; - int cpu = U_SYSCALL_NO_PARAM(sched_getcpu); -# endif - # ifdef SO_INCOMING_CPU USocket::incoming_cpu = rkids % u_num_cpu; # endif -# ifdef HAVE_SCHED_GETCPU - if (USocket::incoming_cpu != cpu && - USocket::incoming_cpu != -1) +# ifndef U_LOG_DISABLE + if (isLog()) { - sz = u__snprintf(buffer, sizeof(buffer), " (EXPECTED CPU %d)", USocket::incoming_cpu); - } -# endif + uint32_t sz; + char buffer[64]; + int cpu = U_SYSCALL_NO_PARAM(sched_getcpu); - U_SRV_LOG("New child started, affinity mask: %x, cpu: %d%.*s", CPUSET_BITS(&cpuset)[0], cpu, sz, buffer); +# ifdef HAVE_SCHED_GETCPU + if (USocket::incoming_cpu != cpu && + USocket::incoming_cpu != -1) + { + sz = u__snprintf(buffer, sizeof(buffer), " (EXPECTED CPU %d)", USocket::incoming_cpu); + } + else +# endif + sz = 0; + + ULog::log("%sNew child started, affinity mask: %x, cpu: %d%.*s", mod_name[0], CPUSET_BITS(&cpuset)[0], cpu, sz, buffer); + } +# endif } # ifdef HAVE_LIBNUMA diff --git a/src/ulib/notifier.cpp b/src/ulib/notifier.cpp index 27a20cbc..863d5752 100644 --- a/src/ulib/notifier.cpp +++ b/src/ulib/notifier.cpp @@ -100,7 +100,7 @@ bool UNotifier::bepollet; int UNotifier::ctl_cmd_cnt; struct epoll_ctl_cmd UNotifier::ctl_cmd[U_EPOLL_CTL_CMD_SIZE]; -void UNotifier::batch((UEventFd* item) +void UNotifier::batch(UEventFd* item) { U_TRACE(0, "UNotifier::batch(%p)", item) diff --git a/src/ulib/ssl/net/sslsocket.cpp b/src/ulib/ssl/net/sslsocket.cpp index 72808279..e887d01d 100644 --- a/src/ulib/ssl/net/sslsocket.cpp +++ b/src/ulib/ssl/net/sslsocket.cpp @@ -267,7 +267,6 @@ long USSLSocket::getOptions(const UVector& vec) uint32_t j; UString key; - const char* ptr; long options = SSL_OP_NO_SSLv2 | # ifdef SSL_OP_NO_COMPRESSION @@ -277,9 +276,8 @@ long USSLSocket::getOptions(const UVector& vec) for (uint32_t i = 0, n = vec.size(); i < n; ++i) { - uint32_t len = key.size(); - - ptr = key.data(); + uint32_t len = key.size(); + const char* ptr = key.data(); char positive = 1; diff --git a/src/ulib/thread.cpp b/src/ulib/thread.cpp index ebed23d8..7e34a8c8 100644 --- a/src/ulib/thread.cpp +++ b/src/ulib/thread.cpp @@ -417,14 +417,14 @@ void UThread::setCancel(int mode) { U_TRACE(1, "UThread::setCancel(%d)", mode) - int old; - switch (mode) { case cancelDeferred: case cancelImmediate: { # ifdef HAVE_PTHREAD_CANCEL + int old; + (void) U_SYSCALL(pthread_setcancelstate, "%d,%p", PTHREAD_CANCEL_ENABLE, &old); (void) U_SYSCALL(pthread_setcanceltype, "%d,%p", (mode == cancelDeferred ? PTHREAD_CANCEL_DEFERRED : PTHREAD_CANCEL_ASYNCHRONOUS), &old); @@ -436,6 +436,8 @@ void UThread::setCancel(int mode) case cancelDisabled: { # ifdef HAVE_PTHREAD_CANCEL + int old; + (void) U_SYSCALL(pthread_setcancelstate, "%d,%p", PTHREAD_CANCEL_DISABLE, &old); # endif } diff --git a/src/ulib/utility/http2.cpp b/src/ulib/utility/http2.cpp index 057e5149..e676369b 100644 --- a/src/ulib/utility/http2.cpp +++ b/src/ulib/utility/http2.cpp @@ -2336,14 +2336,14 @@ void UHTTP2::handlerResponse() if (sz2) { - uint32_t pos; UString row, key; UVector vext(20); for (uint32_t i = 0, n = vext.split(*UHTTP::ext, U_CRLF); i < n; ++i) { row = vext[i]; - pos = row.find_first_of(':'); + + uint32_t pos = row.find_first_of(':'); key = row.substr(0U, pos); dst = hpackEncodeHeader(dst, dyntbl, key, row.substr(pos+2), bfirst ? 0 : &vdyntbl); diff --git a/src/ulib/utility/socket_ext.cpp b/src/ulib/utility/socket_ext.cpp index d79dd9ea..67bd3921 100644 --- a/src/ulib/utility/socket_ext.cpp +++ b/src/ulib/utility/socket_ext.cpp @@ -1408,7 +1408,9 @@ UString USocketExt::getGatewayAddress(const char* network, uint32_t network_len) do { // Receive response from the kernel - if ((readLen = U_SYSCALL(recv, "%d,%p,%u,%d", sock, CAST(bufPtr), 4096 - msgLen, 0)) < 0) break; + readLen = U_SYSCALL(recv, "%d,%p,%u,%d", sock, CAST(bufPtr), 4096 - msgLen, 0); + + if (readLen < 0) break; nlHdr.p = bufPtr; @@ -1443,14 +1445,13 @@ UString USocketExt::getGatewayAddress(const char* network, uint32_t network_len) int rtLen; char* dst; char dstMask[32]; - struct rtmsg* rtMsg; struct rtattr* rtAttr; char ifName[IF_NAMESIZE]; struct in_addr dstAddr, srcAddr, gateWay; for (; NLMSG_OK(nlMsg.h,msgLen); nlMsg.h = NLMSG_NEXT(nlMsg.h,msgLen)) { - rtMsg = (struct rtmsg*) NLMSG_DATA(nlMsg.h); + struct rtmsg* rtMsg = (struct rtmsg*) NLMSG_DATA(nlMsg.h); U_INTERNAL_DUMP("rtMsg = %p msgLen = %u rtm_family = %u rtm_table = %u", rtMsg, msgLen, rtMsg->rtm_family, rtMsg->rtm_table) diff --git a/src/ulib/utility/uhttp.cpp b/src/ulib/utility/uhttp.cpp index 719917d5..93eea18f 100644 --- a/src/ulib/utility/uhttp.cpp +++ b/src/ulib/utility/uhttp.cpp @@ -8330,9 +8330,9 @@ bool UHTTP::getCGIEnvironment(UString& environment, int mask) if ((mask & U_RAKE) == 0) { +# ifdef U_ALIAS bool brequest = false; -# ifdef U_ALIAS if (*UClientImage_Base::request_uri) { // The interpreted pathname of the original requested document (relative to the document root) @@ -8348,9 +8348,10 @@ bool UHTTP::getCGIEnvironment(UString& environment, int mask) buffer.snprintf_add("REQUEST_URI=%.*s?%.*s\n", sz, ptr, U_HTTP_QUERY_TO_TRACE); } } -# endif - if (brequest == false) buffer.snprintf_add("REQUEST_URI=%.*s\n", sz, ptr); + if (brequest == false) +# endif + buffer.snprintf_add("REQUEST_URI=%.*s\n", sz, ptr); } if ((mask & U_PHP) != 0) diff --git a/tests/examples/ok/web_server.ok b/tests/examples/ok/web_server.ok index bbb54db3..f0ace4be 100644 --- a/tests/examples/ok/web_server.ok +++ b/tests/examples/ok/web_server.ok @@ -1,11 +1,11 @@ HTTP/1.1 505 HTTP Version Not Supported -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -21,7 +21,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -37,7 +37,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -53,7 +53,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -69,19 +69,19 @@ Content-Length: 263
ULib Server
HTTP/1.1 411 Length Required -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 413 Request Entity Too Large -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -97,7 +97,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -113,7 +113,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -129,7 +129,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -145,7 +145,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -161,7 +161,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -177,14 +177,14 @@ Content-Length: 263
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -200,13 +200,13 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 344 @@ -221,7 +221,7 @@ Content-Length: 344
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 304 @@ -236,7 +236,7 @@ Content-Length: 304
ULib Server
HTTP/1.1 500 Internal Server Error -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 548 @@ -251,14 +251,14 @@ Content-Length: 548
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 21 pippo pluto paperino HTTP/1.1 401 Authorization Required -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 WWW-Authenticate: Basic realm="Protected Area" @@ -274,20 +274,20 @@ Content-Length: 444
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:37 GMT +Expires: Mon, 22 May 2017 13:43:20 GMT Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT Content-Length: 63 this is the web_server testsuite inp/http/data/index.html file HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Range: bytes 0-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:38 GMT +Expires: Mon, 22 May 2017 13:43:21 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -296,89 +296,89 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Range: bytes 0-31/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:38 GMT +Expires: Mon, 22 May 2017 13:43:21 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 123456781234567 345678903456789 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:38 GMT +Expires: Mon, 22 May 2017 13:43:21 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:38 GMT +Expires: Mon, 22 May 2017 13:43:21 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 230 -Content-Type: multipart/byteranges; boundary="=_13691037909366000656" +Content-Type: multipart/byteranges; boundary="=_10592562257992085692" ---=_13691037909366000656 +--=_10592562257992085692 Content-Range: bytes 0-0/64 Content-Type: text/html; charset=UTF-8 1 ---=_13691037909366000656 +--=_10592562257992085692 Content-Range: bytes 63-63/64 Content-Type: text/html; charset=UTF-8 ---=_13691037909366000656--HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +--=_10592562257992085692--HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Range: bytes 50-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:38 GMT +Expires: Mon, 22 May 2017 13:43:21 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 14 2345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 250 -Content-Type: multipart/byteranges; boundary="=_13691037909366000657" +Content-Type: multipart/byteranges; boundary="=_10592562257992085693" ---=_13691037909366000657 +--=_10592562257992085693 Content-Range: bytes 10-19/64 Content-Type: text/html; charset=UTF-8 34567 3456 ---=_13691037909366000657 +--=_10592562257992085693 Content-Range: bytes 50-59/64 Content-Type: text/html; charset=UTF-8 2345670123 ---=_13691037909366000657--HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +--=_10592562257992085693--HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:38 GMT +Expires: Mon, 22 May 2017 13:43:21 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -387,37 +387,37 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 0 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 294 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 562 -Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes15/12/2015 14:59:36

ULib Server
HTTP/1.1 304 Not Modified -Date: Tue, 15 Dec 2015 14:59:38 GMT +Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes22/05/2016 13:43:19

ULib Server
HTTP/1.1 304 Not Modified +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 1669 @@ -464,10 +464,10 @@ Content-Length: 1669 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Content-Length: 1948 +Content-Length: 1937
 ssi_begin
@@ -494,9 +494,9 @@ Document name: ssi1.shtml
 
 Document URI: /SSI/ssi1.shtml
 
-It's now: Tuesday, 15-Dec-2015 14:59:38 GMT
+It's now: Sunday, 22-May-2016 13:43:21 GMT
 
-It's now: Tuesday, 15-Dec-2015 15:59:38 CET
+It's now: Sunday, 22-May-2016 15:43:21 CEST
 
 This page is:     179 Bytes
 
@@ -519,14 +519,14 @@ SCRIPT_NAME=/SSI/ssi1.shtml
 PATH_INFO=/SSI/ssi1.shtml
 HTTP_HOST=10.30.1.131
 SERVER_PROTOCOL=HTTP/1.1
-SERVER_ADDR=10.1.55.83
+SERVER_ADDR=
 DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
 GATEWAY_INTERFACE=CGI/1.1
 SERVER_SOFTWARE=ULib/1.4.2
-REMOTE_PORT=52012
+REMOTE_PORT=51264
 REMOTE_ADDR=127.0.0.1
 SESSION_ID=127.0.0.1:0
-REQUEST_ID=127.0.0.1:52012:0
+REQUEST_ID=127.0.0.1:51264:0
 PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
 PATH=/usr/local/bin:/usr/bin:/bin
 HTTP_X_SENDFILE=puppamelo
@@ -537,14 +537,14 @@ end   PRINTENV
 start LS
 --------------
 total 392
-drwxr-xr-x 3 apache apache   4096 Oct 30 16:21 .
-drwxr-xr-x 8 apache apache 368640 Dec 15 15:59 ..
-drwxr-xr-x 3 apache apache   4096 Aug 25  2014 earth
--rw-r--r-- 1 apache apache    179 Aug 12 15:43 embed.c
--rw-r--r-- 3 apache apache    160 Mar 28  2011 index.shtml
--rw-r--r-- 1 apache apache    352 Nov  8  2011 menu.shtml
--rw-r--r-- 1 apache apache    917 Oct 30 16:20 ssi1.shtml
--rw-r--r-- 1 apache apache   1190 Aug 25  2014 ssi2.shtml
+drwxr-xr-x 3 nobody nobody   4096 Oct 30  2015 .
+drwxr-xr-x 8 nobody nobody 368640 May 22 15:43 ..
+drwxr-xr-x 3 nobody nobody   4096 Aug 25  2014 earth
+-rw-r--r-- 1 nobody nobody    179 Aug 12  2015 embed.c
+-rw-r--r-- 3 nobody nobody    160 Mar 28  2011 index.shtml
+-rw-r--r-- 1 nobody nobody    352 Nov  8  2011 menu.shtml
+-rw-r--r-- 1 nobody nobody    917 Oct 30  2015 ssi1.shtml
+-rw-r--r-- 1 nobody nobody   1190 Aug 25  2014 ssi2.shtml
 --------------
 end   LS
 
@@ -574,12 +574,12 @@ SSI_END
 ssi_end
 
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 115 X-Real-IP: 10.30.1.131 -Set-Cookie: ulib.s1=; expires=Mon, 14 Dec 2015 14:59:38 GMT -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e26313435303237373937382651e66cffca210d95b41707e44ff81aed; expires=Wed, 16 Dec 2015 14:59:38 GMT +Set-Cookie: ulib.s1=; expires=Sat, 21 May 2016 13:43:21 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343634303131303031263b20adee0a21c02037b8d0249fb57f72; expires=Mon, 23 May 2016 13:43:21 GMT Set-Cookie: TestCookie=pippo Content-Type: text/html; charset=iso-8859-1 @@ -587,26 +587,26 @@ UID = Steve Johnson HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 ULIB_SESSION = HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 Content-Length: 718 UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 211 Content-Type: text/html

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Length: 72 Content-Type: application/jsonrequest -{"user":"doctoravatar@penzance.com","forecast":7,"t":"vlIj","zip":94089}HTTP/1.1 302 Moved Temporarily -Date: Tue, 15 Dec 2015 14:59:38 GMT +{"user":"doctoravatar@penzance.com","t":"vlIj","forecast":7,"zip":94089}HTTP/1.1 302 Moved Temporarily +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -625,7 +625,7 @@ Content-Length: 365
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -640,7 +640,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -655,7 +655,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -670,7 +670,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -685,7 +685,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -700,7 +700,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -715,7 +715,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -730,7 +730,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -745,7 +745,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -760,7 +760,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -775,7 +775,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -791,7 +791,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -806,7 +806,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -821,7 +821,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -836,7 +836,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -851,7 +851,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -866,7 +866,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -881,7 +881,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -896,7 +896,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -911,7 +911,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -926,7 +926,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -941,7 +941,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -956,7 +956,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -972,7 +972,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -987,15 +987,15 @@ Content-Length: 249
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: image/x-icon -Expires: Wed, 14 Dec 2016 14:59:37 GMT +Expires: Mon, 22 May 2017 13:43:20 GMT Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT Content-Length: 318 (( Fi " " " " " 33333HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -1010,7 +1010,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 273 @@ -1025,7 +1025,7 @@ Content-Length: 273
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 267 @@ -1040,7 +1040,7 @@ Content-Length: 267
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 280 @@ -1055,7 +1055,7 @@ Content-Length: 280
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 282 @@ -1070,7 +1070,7 @@ Content-Length: 282
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -1085,7 +1085,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 269 @@ -1100,7 +1100,7 @@ Content-Length: 269
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -1115,7 +1115,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 276 @@ -1130,7 +1130,7 @@ Content-Length: 276
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -1145,7 +1145,7 @@ Content-Length: 249
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 265 @@ -1160,7 +1160,7 @@ Content-Length: 265
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -1177,10 +1177,10 @@ Content-Length: 249 HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade -Sec-WebSocket-Accept: vsCGFJfNc74rQ4AZeBKjxg== +Sec-WebSocket-Accept: dpjTEXlsfrAZZvsHJW3DKA== HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 259 @@ -1195,7 +1195,7 @@ Content-Length: 259
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 248 @@ -1210,7 +1210,7 @@ Content-Length: 248
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -1225,7 +1225,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -1240,7 +1240,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1256,7 +1256,7 @@ Content-Length: 272
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 @@ -1271,7 +1271,7 @@ Content-Length: 257
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -1286,37 +1286,37 @@ Content-Length: 254
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1332,10 +1332,10 @@ Content-Length: 255
ULib Server
HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:38 GMT +Date: Sun, 22 May 2016 13:43:21 GMT Server: ULib Connection: close -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e26313435303237373937382651e66cffca210d95b41707e44ff81aed; expires=Wed, 16 Dec 2015 14:59:38 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343634303131303031263b20adee0a21c02037b8d0249fb57f72; expires=Mon, 23 May 2016 13:43:21 GMT Content-Length: 0 @@ -1377,13 +1377,13 @@ Content-Length: 0 HTTP/1.1 505 HTTP Version Not Supported -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1399,7 +1399,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1415,7 +1415,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1431,7 +1431,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1447,19 +1447,19 @@ Content-Length: 263
ULib Server
HTTP/1.1 411 Length Required -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 413 Request Entity Too Large -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1475,7 +1475,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1491,7 +1491,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1507,7 +1507,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1523,7 +1523,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1539,7 +1539,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1555,14 +1555,14 @@ Content-Length: 263
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -1578,13 +1578,13 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 344 @@ -1599,7 +1599,7 @@ Content-Length: 344
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 304 @@ -1614,7 +1614,7 @@ Content-Length: 304
ULib Server
HTTP/1.1 500 Internal Server Error -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 548 @@ -1629,14 +1629,14 @@ Content-Length: 548
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 21 pippo pluto paperino HTTP/1.1 401 Authorization Required -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 WWW-Authenticate: Basic realm="Protected Area" @@ -1652,20 +1652,20 @@ Content-Length: 444
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:40 GMT +Expires: Mon, 22 May 2017 13:43:23 GMT Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT Content-Length: 63 this is the web_server testsuite inp/http/data/index.html file HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Range: bytes 0-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:41 GMT +Expires: Mon, 22 May 2017 13:43:24 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -1674,2845 +1674,89 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Range: bytes 0-31/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:41 GMT +Expires: Mon, 22 May 2017 13:43:24 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 123456781234567 345678903456789 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:41 GMT +Expires: Mon, 22 May 2017 13:43:24 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:41 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:41 GMT +Expires: Mon, 22 May 2017 13:43:24 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 224 -Content-Type: multipart/byteranges; boundary="=_720670980093006748" - - ---=_720670980093006748 -Content-Range: bytes 0-0/64 -Content-Type: text/html; charset=UTF-8 - -1 ---=_720670980093006748 -Content-Range: bytes 63-63/64 -Content-Type: text/html; charset=UTF-8 - - - ---=_720670980093006748--HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Range: bytes 50-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:41 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 14 - -2345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 244 -Content-Type: multipart/byteranges; boundary="=_720670980093006749" - - ---=_720670980093006749 -Content-Range: bytes 10-19/64 -Content-Type: text/html; charset=UTF-8 - -34567 -3456 ---=_720670980093006749 -Content-Range: bytes 50-59/64 -Content-Type: text/html; charset=UTF-8 - -2345670123 ---=_720670980093006749--HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:41 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 64 - -123456781234567 -345678903456789 -234567892345678 -012345670123456 -HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 0 - -HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 0 - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Encoding: gzip -Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT -Content-Length: 294 - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT -Content-Length: 562 - -Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes15/12/2015 14:59:36

ULib Server
HTTP/1.1 304 Not Modified -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 0 - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 1669 - - - - Welcome to ULib Web Server! - - - - -
-

Welcome to ULib Web Server!

-
- - -
- - - - - - -
- - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 1948 - -
-ssi_begin
-This page last updated: Friday, 30-Oct-2015 15:20:57 GMT
-
- -1: ok - - -2: ok - - -3: ok - - -4: ok - - -
-SSI_BEGIN
-Name of user: nobody
-
-Document name: ssi1.shtml
-
-Document URI: /SSI/ssi1.shtml
-
-It's now: Tuesday, 15-Dec-2015 14:59:41 GMT
-
-It's now: Tuesday, 15-Dec-2015 15:59:41 CET
-
-This page is:     179 Bytes
-
-This file last modified: August 12, 2015
-
-You're using: 
-
-$HTTP_X_SENDFILE: 
-
-
-start PRINTENV
---------------
-QUERY_STRING=
-REQUEST_URI=/SSI/ssi1.shtml
-SERVER_NAME=stefano
-SERVER_PORT=8080
-CONTENT_LENGTH=0
-REQUEST_METHOD=GET
-SCRIPT_NAME=/SSI/ssi1.shtml
-PATH_INFO=/SSI/ssi1.shtml
-HTTP_HOST=10.30.1.131
-SERVER_PROTOCOL=HTTP/1.1
-SERVER_ADDR=10.1.55.83
-DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
-GATEWAY_INTERFACE=CGI/1.1
-SERVER_SOFTWARE=ULib/1.4.2
-REMOTE_PORT=52074
-REMOTE_ADDR=127.0.0.1
-SESSION_ID=127.0.0.1:0
-REQUEST_ID=127.0.0.1:52074:0
-PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
-PATH=/usr/local/bin:/usr/bin:/bin
-HTTP_X_SENDFILE=puppamelo
---------------
-end   PRINTENV
- 
-
-start LS
---------------
-total 392
-drwxr-xr-x 3 apache apache   4096 Oct 30 16:21 .
-drwxr-xr-x 8 apache apache 368640 Dec 15 15:59 ..
-drwxr-xr-x 3 apache apache   4096 Aug 25  2014 earth
--rw-r--r-- 1 apache apache    179 Aug 12 15:43 embed.c
--rw-r--r-- 3 apache apache    160 Mar 28  2011 index.shtml
--rw-r--r-- 1 apache apache    352 Nov  8  2011 menu.shtml
--rw-r--r-- 1 apache apache    917 Oct 30 16:20 ssi1.shtml
--rw-r--r-- 1 apache apache   1190 Aug 25  2014 ssi2.shtml
---------------
-end   LS
-
-start CGI
---------------
-Content-Type: text/html
-
-You're not using Microsoft® Internet Explorer® 5.0
---------------
-end   CGI
-SSI include failed!
-SSI include failed!
-/*int main(void) {
-  struct mg_context* ctx;
-  const char *options[] = {"listening_ports", LISTENING_PORT, NULL};
-
-  ctx = mg_start(callback, options);
-  pause();
-  return 0;
-}*/
-
-SSI_END
-
- - -
-ssi_end
-
-HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 115 -X-Real-IP: 10.30.1.131 -Set-Cookie: ulib.s1=; expires=Mon, 14 Dec 2015 14:59:41 GMT -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343530323737393831263963e6a00184746af46907b61b6f1368; expires=Wed, 16 Dec 2015 14:59:41 GMT -Set-Cookie: TestCookie=pippo -Content-Type: text/html; charset=iso-8859-1 - -UID = Steve Johnson -HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 -ULIB_SESSION = -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Encoding: gzip -Content-Type: text/html; charset=UTF-8 -Content-Length: 718 - -UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 211 -Content-Type: text/html - -

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Length: 72 -Content-Type: application/jsonrequest - -{"user":"doctoravatar@penzance.com","forecast":7,"t":"vlIj","zip":94089}HTTP/1.1 302 Moved Temporarily -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Location: http://10.30.1.131/?ticket=U2FsdGVkX1+/AYaicDGB1EReb1+EErzD/ar1Wrv8wrXpYEj9RoN3RlzFWK5ykUyRMg4AicmBMNQsUQDWZENgiQ -X-Powered-By: PHP/5.2.6-pl7-gentoo -X-Powered-By: PHP/5.2.6-pl7-gentoo -Content-Length: 365 - - - -302 Moved Temporarily - -

Moved Temporarily

-

The document has moved here

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/uploader" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/uploader" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/uploader" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 249 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test" was not found on this server

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: image/x-icon -Expires: Wed, 14 Dec 2016 14:59:40 GMT -Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT -Content-Length: 318 - -(( Fi " " " " " 33333HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/dumbfuck" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 273 - - - -404 Not Found - -

Not Found

-

Your requested URL "/get_no_headers_no_body/world" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 267 - - - -404 Not Found - -

Not Found

-

Your requested URL "/get_one_header_no_body" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 280 - - - -404 Not Found - -

Not Found

-

Your requested URL "/get_funky_content_length_body_hello" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 282 - - - -404 Not Found - -

Not Found

-

Your requested URL "/post_identity_body_world?q=search#hey" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 271 - - - -404 Not Found - -

Not Found

-

Your requested URL "/post_chunked_all_your_base" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 269 - - - -404 Not Found - -

Not Found

-

Your requested URL "/two_chunks_mult_zero_end" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 271 - - - -404 Not Found - -

Not Found

-

Your requested URL "/chunked_w_trailing_headers" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 276 - - - -404 Not Found - -

Not Found

-

Your requested URL "/chunked_w_bullshit_after_length" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 249 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 265 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test.cgi?foo=bar?baz" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 249 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test" was not found on this server

-
-
ULib Server
- -HTTP/1.1 101 Switching Protocols -Upgrade: websocket -Connection: Upgrade -Sec-WebSocket-Accept: iNkc7hO83EU6tYC2p/2C2w== - -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 259 - - - -404 Not Found - -

Not Found

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 248 - - - -403 Forbidden - -

Forbidden

-

You don't have permission to access "*" on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/index.php" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/file.txt" was not found on this server

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 272 - - - -400 Bad Request - -

Bad Request

-

Your requested URL "/" was a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 257 - - - -404 Not Found - -

Not Found

-

Your requested URL "/bag.xml?ix=2" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/help.html" was not found on this server

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 255 - - - -404 Not Found - -

Not Found

-

Your requested URL "/plaintext1" was not found on this server

-
-
ULib Server
- -HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:41 GMT -Server: ULib -Connection: close -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343530323737393831263963e6a00184746af46907b61b6f1368; expires=Wed, 16 Dec 2015 14:59:41 GMT -Content-Length: 0 - - - - - - - - - - - - - -
Your file have been uploaded!

- File #1: /uploads/vuoto.txt
-
-
- Go Back
- - - - - - - - - - - - - - -
Your file have been uploaded!

- File #1: /uploads/operazione.xml
-
-
- Go Back
- - -HTTP/1.1 505 HTTP Version Not Supported -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Length: 0 - -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/index.php" was not found on this server

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 411 Length Required -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Length: 0 - -HTTP/1.1 413 Request Entity Too Large -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Length: 0 - -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE -Content-Length: 0 - -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/index.php" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 257 - -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 344 - - - -404 Not Found - -

Not Found

-

Your requested URL "/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" was not found on this server

-
-
ULib Server
- -HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 304 - - - -403 Forbidden - -

Forbidden

-

You don't have permission to access "/../../../../linux/include/generated/uapi/linux/version.h" on this server

-
-
ULib Server
- -HTTP/1.1 500 Internal Server Error -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 548 - - - -500 Internal Server Error - -

Internal Server Error

-

The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 21 - -pippo pluto paperino -HTTP/1.1 401 Authorization Required -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -WWW-Authenticate: Basic realm="Protected Area" -Content-Length: 444 - - - -401 Authorization Required - -

Authorization Required

-

This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:43 GMT -Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT -Content-Length: 63 - -this is the web_server testsuite inp/http/data/index.html file -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Range: bytes 0-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:44 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 64 - -123456781234567 -345678903456789 -234567892345678 -012345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Range: bytes 0-31/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:44 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 32 - -123456781234567 -345678903456789 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Range: bytes 32-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:44 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 32 - -234567892345678 -012345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Range: bytes 32-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:44 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 32 - -234567892345678 -012345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 227 -Content-Type: multipart/byteranges; boundary="=_9727870236772400106" - - ---=_9727870236772400106 -Content-Range: bytes 0-0/64 -Content-Type: text/html; charset=UTF-8 - -1 ---=_9727870236772400106 -Content-Range: bytes 63-63/64 -Content-Type: text/html; charset=UTF-8 - - - ---=_9727870236772400106--HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Range: bytes 50-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:44 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 14 - -2345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 247 -Content-Type: multipart/byteranges; boundary="=_9727870236772400107" - - ---=_9727870236772400107 -Content-Range: bytes 10-19/64 -Content-Type: text/html; charset=UTF-8 - -34567 -3456 ---=_9727870236772400107 -Content-Range: bytes 50-59/64 -Content-Type: text/html; charset=UTF-8 - -2345670123 ---=_9727870236772400107--HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:44 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 64 - -123456781234567 -345678903456789 -234567892345678 -012345670123456 -HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 0 - -HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 0 - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Encoding: gzip -Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT -Content-Length: 294 - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT -Content-Length: 562 - -Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes15/12/2015 14:59:36

ULib Server
HTTP/1.1 304 Not Modified -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 0 - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 1669 - - - - Welcome to ULib Web Server! - - - - -
-

Welcome to ULib Web Server!

-
- - -
- - - - - - -
- - -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 1948 - -
-ssi_begin
-This page last updated: Friday, 30-Oct-2015 15:20:57 GMT
-
- -1: ok - - -2: ok - - -3: ok - - -4: ok - - -
-SSI_BEGIN
-Name of user: nobody
-
-Document name: ssi1.shtml
-
-Document URI: /SSI/ssi1.shtml
-
-It's now: Tuesday, 15-Dec-2015 14:59:44 GMT
-
-It's now: Tuesday, 15-Dec-2015 15:59:44 CET
-
-This page is:     179 Bytes
-
-This file last modified: August 12, 2015
-
-You're using: 
-
-$HTTP_X_SENDFILE: 
-
-
-start PRINTENV
---------------
-QUERY_STRING=
-REQUEST_URI=/SSI/ssi1.shtml
-SERVER_NAME=stefano
-SERVER_PORT=8080
-CONTENT_LENGTH=0
-REQUEST_METHOD=GET
-SCRIPT_NAME=/SSI/ssi1.shtml
-PATH_INFO=/SSI/ssi1.shtml
-HTTP_HOST=10.30.1.131
-SERVER_PROTOCOL=HTTP/1.1
-SERVER_ADDR=10.1.55.83
-DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
-GATEWAY_INTERFACE=CGI/1.1
-SERVER_SOFTWARE=ULib/1.4.2
-REMOTE_PORT=52136
-REMOTE_ADDR=127.0.0.1
-SESSION_ID=127.0.0.1:0
-REQUEST_ID=127.0.0.1:52136:0
-PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
-PATH=/usr/local/bin:/usr/bin:/bin
-HTTP_X_SENDFILE=puppamelo
---------------
-end   PRINTENV
- 
-
-start LS
---------------
-total 392
-drwxr-xr-x 3 apache apache   4096 Oct 30 16:21 .
-drwxr-xr-x 8 apache apache 368640 Dec 15 15:59 ..
-drwxr-xr-x 3 apache apache   4096 Aug 25  2014 earth
--rw-r--r-- 1 apache apache    179 Aug 12 15:43 embed.c
--rw-r--r-- 3 apache apache    160 Mar 28  2011 index.shtml
--rw-r--r-- 1 apache apache    352 Nov  8  2011 menu.shtml
--rw-r--r-- 1 apache apache    917 Oct 30 16:20 ssi1.shtml
--rw-r--r-- 1 apache apache   1190 Aug 25  2014 ssi2.shtml
---------------
-end   LS
-
-start CGI
---------------
-Content-Type: text/html
-
-You're not using Microsoft® Internet Explorer® 5.0
---------------
-end   CGI
-SSI include failed!
-SSI include failed!
-/*int main(void) {
-  struct mg_context* ctx;
-  const char *options[] = {"listening_ports", LISTENING_PORT, NULL};
-
-  ctx = mg_start(callback, options);
-  pause();
-  return 0;
-}*/
-
-SSI_END
-
- - -
-ssi_end
-
-HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 115 -X-Real-IP: 10.30.1.131 -Set-Cookie: ulib.s1=; expires=Mon, 14 Dec 2015 14:59:44 GMT -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343530323737393834264855a770da0cd090e9377efb16b718ae; expires=Wed, 16 Dec 2015 14:59:44 GMT -Set-Cookie: TestCookie=pippo -Content-Type: text/html; charset=iso-8859-1 - -UID = Steve Johnson -HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 -ULIB_SESSION = -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Encoding: gzip -Content-Type: text/html; charset=UTF-8 -Content-Length: 718 - -UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 211 -Content-Type: text/html - -

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Length: 72 -Content-Type: application/jsonrequest - -{"user":"doctoravatar@penzance.com","forecast":7,"t":"vlIj","zip":94089}HTTP/1.1 302 Moved Temporarily -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Location: http://10.30.1.131/?ticket=U2FsdGVkX1+/AYaicDGB1EReb1+EErzD/ar1Wrv8wrXpYEj9RoN3RlzFWK5ykUyRMg4AicmBMNQsUQDWZENgiQ -X-Powered-By: PHP/5.2.6-pl7-gentoo -X-Powered-By: PHP/5.2.6-pl7-gentoo -Content-Length: 365 - - - -302 Moved Temporarily - -

Moved Temporarily

-

The document has moved here

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/uploader" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/uploader" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/uploader" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 356 - - - -404 Not Found - -

Not Found

-

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 249 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test" was not found on this server

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: image/x-icon -Expires: Wed, 14 Dec 2016 14:59:43 GMT -Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT -Content-Length: 318 - -(( Fi " " " " " 33333HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/dumbfuck" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 273 - - - -404 Not Found - -

Not Found

-

Your requested URL "/get_no_headers_no_body/world" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 267 - - - -404 Not Found - -

Not Found

-

Your requested URL "/get_one_header_no_body" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 280 - - - -404 Not Found - -

Not Found

-

Your requested URL "/get_funky_content_length_body_hello" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 282 - - - -404 Not Found - -

Not Found

-

Your requested URL "/post_identity_body_world?q=search#hey" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 271 - - - -404 Not Found - -

Not Found

-

Your requested URL "/post_chunked_all_your_base" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 269 - - - -404 Not Found - -

Not Found

-

Your requested URL "/two_chunks_mult_zero_end" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 271 - - - -404 Not Found - -

Not Found

-

Your requested URL "/chunked_w_trailing_headers" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 276 - - - -404 Not Found - -

Not Found

-

Your requested URL "/chunked_w_bullshit_after_length" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 249 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 265 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test.cgi?foo=bar?baz" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 249 - - - -404 Not Found - -

Not Found

-

Your requested URL "/test" was not found on this server

-
-
ULib Server
- -HTTP/1.1 101 Switching Protocols -Upgrade: websocket -Connection: Upgrade -Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= - -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 259 - - - -404 Not Found - -

Not Found

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 248 - - - -403 Forbidden - -

Forbidden

-

You don't have permission to access "*" on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/index.php" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 253 - - - -404 Not Found - -

Not Found

-

Your requested URL "/file.txt" was not found on this server

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 272 - - - -400 Bad Request - -

Bad Request

-

Your requested URL "/" was a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 257 - - - -404 Not Found - -

Not Found

-

Your requested URL "/bag.xml?ix=2" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/help.html" was not found on this server

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 13 - -Hello, World!HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 255 - - - -404 Not Found - -

Not Found

-

Your requested URL "/plaintext1" was not found on this server

-
-
ULib Server
- -HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:44 GMT -Server: ULib -Connection: close -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343530323737393834264855a770da0cd090e9377efb16b718ae; expires=Wed, 16 Dec 2015 14:59:44 GMT -Content-Length: 0 - - - - - - - - - - - - - -
Your file have been uploaded!

- File #1: /uploads/vuoto.txt
-
-
- Go Back
- - - - - - - - - - - - - - -
Your file have been uploaded!

- File #1: /uploads/operazione.xml
-
-
- Go Back
- - -HTTP/1.1 505 HTTP Version Not Supported -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Length: 0 - -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/index.php" was not found on this server

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 411 Length Required -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Length: 0 - -HTTP/1.1 413 Request Entity Too Large -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Length: 0 - -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 263 - - - -400 Bad Request - -

Bad Request

-

Your browser sent a request that this server could not understand

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE -Content-Length: 0 - -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Connection: close -Content-Type: text/html; charset=UTF-8 -Content-Length: 254 - - - -404 Not Found - -

Not Found

-

Your requested URL "/index.php" was not found on this server

-
-
ULib Server
- -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 257 - -HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 344 - - - -404 Not Found - -

Not Found

-

Your requested URL "/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" was not found on this server

-
-
ULib Server
- -HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 304 - - - -403 Forbidden - -

Forbidden

-

You don't have permission to access "/../../../../linux/include/generated/uapi/linux/version.h" on this server

-
-
ULib Server
- -HTTP/1.1 500 Internal Server Error -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -Content-Length: 548 - - - -500 Internal Server Error - -

Internal Server Error

-

The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Type: text/plain; charset=UTF-8 -Content-Length: 21 - -pippo pluto paperino -HTTP/1.1 401 Authorization Required -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Type: text/html; charset=UTF-8 -WWW-Authenticate: Basic realm="Protected Area" -Content-Length: 444 - - - -401 Authorization Required - -

Authorization Required

-

This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required

-
-
ULib Server
- -HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:47 GMT -Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT -Content-Length: 63 - -this is the web_server testsuite inp/http/data/index.html file -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Range: bytes 0-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:48 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 64 - -123456781234567 -345678903456789 -234567892345678 -012345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Range: bytes 0-31/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:48 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 32 - -123456781234567 -345678903456789 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Range: bytes 32-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:48 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 32 - -234567892345678 -012345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:48 GMT -Server: ULib -Content-Range: bytes 32-63/64 -Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:48 GMT -Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT -Content-Length: 32 - -234567892345678 -012345670123456 -HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 230 -Content-Type: multipart/byteranges; boundary="=_14555729035355053926" +Content-Type: multipart/byteranges; boundary="=_17510091285646597268" ---=_14555729035355053926 +--=_17510091285646597268 Content-Range: bytes 0-0/64 Content-Type: text/html; charset=UTF-8 1 ---=_14555729035355053926 +--=_17510091285646597268 Content-Range: bytes 63-63/64 Content-Type: text/html; charset=UTF-8 ---=_14555729035355053926--HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:48 GMT +--=_17510091285646597268--HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Range: bytes 50-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:48 GMT +Expires: Mon, 22 May 2017 13:43:24 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 14 2345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 250 -Content-Type: multipart/byteranges; boundary="=_14555729035355053927" +Content-Type: multipart/byteranges; boundary="=_17510091285646597269" ---=_14555729035355053927 +--=_17510091285646597269 Content-Range: bytes 10-19/64 Content-Type: text/html; charset=UTF-8 34567 3456 ---=_14555729035355053927 +--=_17510091285646597269 Content-Range: bytes 50-59/64 Content-Type: text/html; charset=UTF-8 2345670123 ---=_14555729035355053927--HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +--=_17510091285646597269--HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:48 GMT +Expires: Mon, 22 May 2017 13:43:24 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -4521,37 +1765,37 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 0 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 294 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 562 -Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes15/12/2015 14:59:36

ULib Server
HTTP/1.1 304 Not Modified -Date: Tue, 15 Dec 2015 14:59:48 GMT +Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes22/05/2016 13:43:19

ULib Server
HTTP/1.1 304 Not Modified +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 1669 @@ -4598,10 +1842,10 @@ Content-Length: 1669 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Content-Length: 1948 +Content-Length: 1937
 ssi_begin
@@ -4628,9 +1872,9 @@ Document name: ssi1.shtml
 
 Document URI: /SSI/ssi1.shtml
 
-It's now: Tuesday, 15-Dec-2015 14:59:48 GMT
+It's now: Sunday, 22-May-2016 13:43:24 GMT
 
-It's now: Tuesday, 15-Dec-2015 15:59:48 CET
+It's now: Sunday, 22-May-2016 15:43:24 CEST
 
 This page is:     179 Bytes
 
@@ -4653,14 +1897,14 @@ SCRIPT_NAME=/SSI/ssi1.shtml
 PATH_INFO=/SSI/ssi1.shtml
 HTTP_HOST=10.30.1.131
 SERVER_PROTOCOL=HTTP/1.1
-SERVER_ADDR=10.1.55.83
+SERVER_ADDR=
 DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
 GATEWAY_INTERFACE=CGI/1.1
 SERVER_SOFTWARE=ULib/1.4.2
-REMOTE_PORT=52206
+REMOTE_PORT=51318
 REMOTE_ADDR=127.0.0.1
 SESSION_ID=127.0.0.1:0
-REQUEST_ID=127.0.0.1:52206:0
+REQUEST_ID=127.0.0.1:51318:0
 PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
 PATH=/usr/local/bin:/usr/bin:/bin
 HTTP_X_SENDFILE=puppamelo
@@ -4671,14 +1915,14 @@ end   PRINTENV
 start LS
 --------------
 total 392
-drwxr-xr-x 3 apache apache   4096 Oct 30 16:21 .
-drwxr-xr-x 8 apache apache 368640 Dec 15 15:59 ..
-drwxr-xr-x 3 apache apache   4096 Aug 25  2014 earth
--rw-r--r-- 1 apache apache    179 Aug 12 15:43 embed.c
--rw-r--r-- 3 apache apache    160 Mar 28  2011 index.shtml
--rw-r--r-- 1 apache apache    352 Nov  8  2011 menu.shtml
--rw-r--r-- 1 apache apache    917 Oct 30 16:20 ssi1.shtml
--rw-r--r-- 1 apache apache   1190 Aug 25  2014 ssi2.shtml
+drwxr-xr-x 3 nobody nobody   4096 Oct 30  2015 .
+drwxr-xr-x 8 nobody nobody 368640 May 22 15:43 ..
+drwxr-xr-x 3 nobody nobody   4096 Aug 25  2014 earth
+-rw-r--r-- 1 nobody nobody    179 Aug 12  2015 embed.c
+-rw-r--r-- 3 nobody nobody    160 Mar 28  2011 index.shtml
+-rw-r--r-- 1 nobody nobody    352 Nov  8  2011 menu.shtml
+-rw-r--r-- 1 nobody nobody    917 Oct 30  2015 ssi1.shtml
+-rw-r--r-- 1 nobody nobody   1190 Aug 25  2014 ssi2.shtml
 --------------
 end   LS
 
@@ -4708,12 +1952,12 @@ SSI_END
 ssi_end
 
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 115 X-Real-IP: 10.30.1.131 -Set-Cookie: ulib.s1=; expires=Mon, 14 Dec 2015 14:59:48 GMT -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134353032373739383826a8fe81eb225c7e2b773949402eb4a67b; expires=Wed, 16 Dec 2015 14:59:48 GMT +Set-Cookie: ulib.s1=; expires=Sat, 21 May 2016 13:43:24 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134363430313130303426c0e5e5e71cc997e8ed70ca7a3cf777e7; expires=Mon, 23 May 2016 13:43:24 GMT Set-Cookie: TestCookie=pippo Content-Type: text/html; charset=iso-8859-1 @@ -4721,26 +1965,26 @@ UID = Steve Johnson HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 ULIB_SESSION = HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 Content-Length: 718 UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 211 Content-Type: text/html

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Length: 72 Content-Type: application/jsonrequest -{"user":"doctoravatar@penzance.com","forecast":7,"t":"vlIj","zip":94089}HTTP/1.1 302 Moved Temporarily -Date: Tue, 15 Dec 2015 14:59:48 GMT +{"user":"doctoravatar@penzance.com","t":"vlIj","forecast":7,"zip":94089}HTTP/1.1 302 Moved Temporarily +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -4759,7 +2003,7 @@ Content-Length: 365
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -4774,7 +2018,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4789,7 +2033,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4804,7 +2048,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4819,7 +2063,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4834,7 +2078,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4849,7 +2093,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4864,7 +2108,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4879,7 +2123,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4894,7 +2138,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4909,7 +2153,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -4925,7 +2169,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -4940,7 +2184,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -4955,7 +2199,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4970,7 +2214,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -4985,7 +2229,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -5000,7 +2244,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -5015,7 +2259,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -5030,7 +2274,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -5045,7 +2289,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -5060,7 +2304,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -5075,7 +2319,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -5090,7 +2334,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5106,7 +2350,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -5121,15 +2365,15 @@ Content-Length: 249
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: image/x-icon -Expires: Wed, 14 Dec 2016 14:59:47 GMT +Expires: Mon, 22 May 2017 13:43:23 GMT Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT Content-Length: 318 (( Fi " " " " " 33333HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -5144,7 +2388,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 273 @@ -5159,7 +2403,7 @@ Content-Length: 273
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 267 @@ -5174,7 +2418,7 @@ Content-Length: 267
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 280 @@ -5189,7 +2433,7 @@ Content-Length: 280
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 282 @@ -5204,7 +2448,7 @@ Content-Length: 282
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -5219,7 +2463,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 269 @@ -5234,7 +2478,7 @@ Content-Length: 269
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -5249,7 +2493,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 276 @@ -5264,7 +2508,7 @@ Content-Length: 276
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -5279,7 +2523,7 @@ Content-Length: 249
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 265 @@ -5294,7 +2538,7 @@ Content-Length: 265
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -5311,10 +2555,10 @@ Content-Length: 249 HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade -Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= +Sec-WebSocket-Accept: HyDE3ud7ytL2dCd9uSGwiw== HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 259 @@ -5329,7 +2573,7 @@ Content-Length: 259
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 248 @@ -5344,7 +2588,7 @@ Content-Length: 248
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -5359,7 +2603,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -5374,7 +2618,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5390,7 +2634,7 @@ Content-Length: 272
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 @@ -5405,7 +2649,7 @@ Content-Length: 257
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -5420,37 +2664,37 @@ Content-Length: 254
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5466,10 +2710,10 @@ Content-Length: 255
ULib Server
HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:48 GMT +Date: Sun, 22 May 2016 13:43:24 GMT Server: ULib Connection: close -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134353032373739383826a8fe81eb225c7e2b773949402eb4a67b; expires=Wed, 16 Dec 2015 14:59:48 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134363430313130303426c0e5e5e71cc997e8ed70ca7a3cf777e7; expires=Mon, 23 May 2016 13:43:24 GMT Content-Length: 0 @@ -5511,13 +2755,13 @@ Content-Length: 0 HTTP/1.1 505 HTTP Version Not Supported -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5533,7 +2777,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5549,7 +2793,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5565,7 +2809,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5581,19 +2825,19 @@ Content-Length: 263
ULib Server
HTTP/1.1 411 Length Required -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 413 Request Entity Too Large -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5609,7 +2853,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5625,7 +2869,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5641,7 +2885,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5657,7 +2901,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5673,7 +2917,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5689,14 +2933,14 @@ Content-Length: 263
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:27 GMT Server: ULib Connection: close Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -5712,13 +2956,13 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 344 @@ -5733,7 +2977,7 @@ Content-Length: 344
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 304 @@ -5748,7 +2992,7 @@ Content-Length: 304
ULib Server
HTTP/1.1 500 Internal Server Error -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 548 @@ -5763,14 +3007,14 @@ Content-Length: 548
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 21 pippo pluto paperino HTTP/1.1 401 Authorization Required -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 WWW-Authenticate: Basic realm="Protected Area" @@ -5786,20 +3030,20 @@ Content-Length: 444
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:50 GMT +Expires: Mon, 22 May 2017 13:43:26 GMT Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT Content-Length: 63 this is the web_server testsuite inp/http/data/index.html file HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Range: bytes 0-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:51 GMT +Expires: Mon, 22 May 2017 13:43:28 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -5808,89 +3052,89 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Range: bytes 0-31/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:51 GMT +Expires: Mon, 22 May 2017 13:43:28 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 123456781234567 345678903456789 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:51 GMT +Expires: Mon, 22 May 2017 13:43:28 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:51 GMT +Expires: Mon, 22 May 2017 13:43:28 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib -Content-Length: 227 -Content-Type: multipart/byteranges; boundary="=_1585362108977345354" +Content-Length: 230 +Content-Type: multipart/byteranges; boundary="=_12538117299249477294" ---=_1585362108977345354 +--=_12538117299249477294 Content-Range: bytes 0-0/64 Content-Type: text/html; charset=UTF-8 1 ---=_1585362108977345354 +--=_12538117299249477294 Content-Range: bytes 63-63/64 Content-Type: text/html; charset=UTF-8 ---=_1585362108977345354--HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +--=_12538117299249477294--HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Range: bytes 50-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:51 GMT +Expires: Mon, 22 May 2017 13:43:28 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 14 2345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib -Content-Length: 247 -Content-Type: multipart/byteranges; boundary="=_1585362108977345355" +Content-Length: 250 +Content-Type: multipart/byteranges; boundary="=_12538117299249477295" ---=_1585362108977345355 +--=_12538117299249477295 Content-Range: bytes 10-19/64 Content-Type: text/html; charset=UTF-8 34567 3456 ---=_1585362108977345355 +--=_12538117299249477295 Content-Range: bytes 50-59/64 Content-Type: text/html; charset=UTF-8 2345670123 ---=_1585362108977345355--HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +--=_12538117299249477295--HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:51 GMT +Expires: Mon, 22 May 2017 13:43:28 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -5899,37 +3143,37 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Length: 0 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 294 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 562 -Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes15/12/2015 14:59:36

ULib Server
HTTP/1.1 304 Not Modified -Date: Tue, 15 Dec 2015 14:59:51 GMT +Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes22/05/2016 13:43:19

ULib Server
HTTP/1.1 304 Not Modified +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 1669 @@ -5976,10 +3220,10 @@ Content-Length: 1669 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Content-Length: 1948 +Content-Length: 1937
 ssi_begin
@@ -6006,9 +3250,9 @@ Document name: ssi1.shtml
 
 Document URI: /SSI/ssi1.shtml
 
-It's now: Tuesday, 15-Dec-2015 14:59:51 GMT
+It's now: Sunday, 22-May-2016 13:43:28 GMT
 
-It's now: Tuesday, 15-Dec-2015 15:59:51 CET
+It's now: Sunday, 22-May-2016 15:43:28 CEST
 
 This page is:     179 Bytes
 
@@ -6031,14 +3275,14 @@ SCRIPT_NAME=/SSI/ssi1.shtml
 PATH_INFO=/SSI/ssi1.shtml
 HTTP_HOST=10.30.1.131
 SERVER_PROTOCOL=HTTP/1.1
-SERVER_ADDR=10.1.55.83
+SERVER_ADDR=
 DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
 GATEWAY_INTERFACE=CGI/1.1
 SERVER_SOFTWARE=ULib/1.4.2
-REMOTE_PORT=52276
+REMOTE_PORT=51372
 REMOTE_ADDR=127.0.0.1
 SESSION_ID=127.0.0.1:0
-REQUEST_ID=127.0.0.1:52276:0
+REQUEST_ID=127.0.0.1:51372:0
 PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
 PATH=/usr/local/bin:/usr/bin:/bin
 HTTP_X_SENDFILE=puppamelo
@@ -6049,14 +3293,14 @@ end   PRINTENV
 start LS
 --------------
 total 392
-drwxr-xr-x 3 apache apache   4096 Oct 30 16:21 .
-drwxr-xr-x 8 apache apache 368640 Dec 15 15:59 ..
-drwxr-xr-x 3 apache apache   4096 Aug 25  2014 earth
--rw-r--r-- 1 apache apache    179 Aug 12 15:43 embed.c
--rw-r--r-- 3 apache apache    160 Mar 28  2011 index.shtml
--rw-r--r-- 1 apache apache    352 Nov  8  2011 menu.shtml
--rw-r--r-- 1 apache apache    917 Oct 30 16:20 ssi1.shtml
--rw-r--r-- 1 apache apache   1190 Aug 25  2014 ssi2.shtml
+drwxr-xr-x 3 nobody nobody   4096 Oct 30  2015 .
+drwxr-xr-x 8 nobody nobody 368640 May 22 15:43 ..
+drwxr-xr-x 3 nobody nobody   4096 Aug 25  2014 earth
+-rw-r--r-- 1 nobody nobody    179 Aug 12  2015 embed.c
+-rw-r--r-- 3 nobody nobody    160 Mar 28  2011 index.shtml
+-rw-r--r-- 1 nobody nobody    352 Nov  8  2011 menu.shtml
+-rw-r--r-- 1 nobody nobody    917 Oct 30  2015 ssi1.shtml
+-rw-r--r-- 1 nobody nobody   1190 Aug 25  2014 ssi2.shtml
 --------------
 end   LS
 
@@ -6086,12 +3330,12 @@ SSI_END
 ssi_end
 
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Length: 115 X-Real-IP: 10.30.1.131 -Set-Cookie: ulib.s1=; expires=Mon, 14 Dec 2015 14:59:51 GMT -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134353032373739393126203931f6705dee809a06ee7787f21f5a; expires=Wed, 16 Dec 2015 14:59:51 GMT +Set-Cookie: ulib.s1=; expires=Sat, 21 May 2016 13:43:28 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e26313436343031313030382606daa8752cddbfca6d7ffd50e35b0a7e; expires=Mon, 23 May 2016 13:43:28 GMT Set-Cookie: TestCookie=pippo Content-Type: text/html; charset=iso-8859-1 @@ -6099,26 +3343,26 @@ UID = Steve Johnson HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 ULIB_SESSION = HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 Content-Length: 718 UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Length: 211 Content-Type: text/html

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Length: 72 Content-Type: application/jsonrequest -{"user":"doctoravatar@penzance.com","forecast":7,"t":"vlIj","zip":94089}HTTP/1.1 302 Moved Temporarily -Date: Tue, 15 Dec 2015 14:59:51 GMT +{"user":"doctoravatar@penzance.com","t":"vlIj","forecast":7,"zip":94089}HTTP/1.1 302 Moved Temporarily +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6137,7 +3381,7 @@ Content-Length: 365
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -6152,7 +3396,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6167,7 +3411,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6182,7 +3426,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6197,7 +3441,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6212,7 +3456,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6227,7 +3471,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6242,7 +3486,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6257,7 +3501,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6272,7 +3516,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6287,7 +3531,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6303,7 +3547,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -6318,7 +3562,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -6333,7 +3577,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6348,7 +3592,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6363,7 +3607,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6378,7 +3622,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6393,7 +3637,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6408,7 +3652,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6423,7 +3667,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6438,7 +3682,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6453,7 +3697,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -6468,7 +3712,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6484,7 +3728,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -6499,15 +3743,15 @@ Content-Length: 249
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: image/x-icon -Expires: Wed, 14 Dec 2016 14:59:50 GMT +Expires: Mon, 22 May 2017 13:43:26 GMT Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT Content-Length: 318 (( Fi " " " " " 33333HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -6522,7 +3766,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 273 @@ -6537,7 +3781,7 @@ Content-Length: 273
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 267 @@ -6552,7 +3796,7 @@ Content-Length: 267
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 280 @@ -6567,7 +3811,7 @@ Content-Length: 280
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 282 @@ -6582,7 +3826,7 @@ Content-Length: 282
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -6597,7 +3841,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 269 @@ -6612,7 +3856,7 @@ Content-Length: 269
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -6627,7 +3871,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 276 @@ -6642,7 +3886,7 @@ Content-Length: 276
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -6657,7 +3901,7 @@ Content-Length: 249
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 265 @@ -6672,7 +3916,7 @@ Content-Length: 265
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -6689,10 +3933,10 @@ Content-Length: 249 HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade -Sec-WebSocket-Accept: 6flZy4c+3Y6xPX4bMzdLqQ== +Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 259 @@ -6707,7 +3951,7 @@ Content-Length: 259
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 248 @@ -6722,7 +3966,7 @@ Content-Length: 248
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -6737,7 +3981,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -6752,7 +3996,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6768,7 +4012,7 @@ Content-Length: 272
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 @@ -6783,7 +4027,7 @@ Content-Length: 257
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -6798,37 +4042,37 @@ Content-Length: 254
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6844,10 +4088,10 @@ Content-Length: 255
ULib Server
HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:51 GMT +Date: Sun, 22 May 2016 13:43:28 GMT Server: ULib Connection: close -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134353032373739393126203931f6705dee809a06ee7787f21f5a; expires=Wed, 16 Dec 2015 14:59:51 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e26313436343031313030382606daa8752cddbfca6d7ffd50e35b0a7e; expires=Mon, 23 May 2016 13:43:28 GMT Content-Length: 0 @@ -6889,13 +4133,13 @@ Content-Length: 0 HTTP/1.1 505 HTTP Version Not Supported -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6911,7 +4155,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6927,7 +4171,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6943,7 +4187,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6959,19 +4203,19 @@ Content-Length: 263
ULib Server
HTTP/1.1 411 Length Required -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 413 Request Entity Too Large -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Length: 0 HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -6987,7 +4231,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7003,7 +4247,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7019,7 +4263,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7035,7 +4279,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7051,7 +4295,7 @@ Content-Length: 263
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7067,14 +4311,14 @@ Content-Length: 263
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE Content-Length: 0 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7090,13 +4334,13 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 344 @@ -7111,7 +4355,7 @@ Content-Length: 344
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 304 @@ -7126,7 +4370,7 @@ Content-Length: 304
ULib Server
HTTP/1.1 500 Internal Server Error -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 548 @@ -7141,14 +4385,14 @@ Content-Length: 548
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 21 pippo pluto paperino HTTP/1.1 401 Authorization Required -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 WWW-Authenticate: Basic realm="Protected Area" @@ -7164,20 +4408,20 @@ Content-Length: 444
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:53 GMT +Expires: Mon, 22 May 2017 13:43:30 GMT Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT Content-Length: 63 this is the web_server testsuite inp/http/data/index.html file HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Range: bytes 0-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:54 GMT +Expires: Mon, 22 May 2017 13:43:31 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -7186,89 +4430,89 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Range: bytes 0-31/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:54 GMT +Expires: Mon, 22 May 2017 13:43:31 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 123456781234567 345678903456789 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:54 GMT +Expires: Mon, 22 May 2017 13:43:31 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Range: bytes 32-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:54 GMT +Expires: Mon, 22 May 2017 13:43:31 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 32 234567892345678 012345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib -Content-Length: 227 -Content-Type: multipart/byteranges; boundary="=_7133796852085005494" +Content-Length: 230 +Content-Type: multipart/byteranges; boundary="=_17798321660541395540" ---=_7133796852085005494 +--=_17798321660541395540 Content-Range: bytes 0-0/64 Content-Type: text/html; charset=UTF-8 1 ---=_7133796852085005494 +--=_17798321660541395540 Content-Range: bytes 63-63/64 Content-Type: text/html; charset=UTF-8 ---=_7133796852085005494--HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +--=_17798321660541395540--HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Range: bytes 50-63/64 Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:54 GMT +Expires: Mon, 22 May 2017 13:43:31 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 14 2345670123456 HTTP/1.1 206 Partial Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib -Content-Length: 247 -Content-Type: multipart/byteranges; boundary="=_7133796852085005495" +Content-Length: 250 +Content-Type: multipart/byteranges; boundary="=_17798321660541395541" ---=_7133796852085005495 +--=_17798321660541395541 Content-Range: bytes 10-19/64 Content-Type: text/html; charset=UTF-8 34567 3456 ---=_7133796852085005495 +--=_17798321660541395541 Content-Range: bytes 50-59/64 Content-Type: text/html; charset=UTF-8 2345670123 ---=_7133796852085005495--HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +--=_17798321660541395541--HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=us-ascii -Expires: Wed, 14 Dec 2016 14:59:54 GMT +Expires: Mon, 22 May 2017 13:43:31 GMT Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT Content-Length: 64 @@ -7277,37 +4521,37 @@ Content-Length: 64 234567892345678 012345670123456 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Length: 0 HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 294 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Last-Modified: Tue, 15 Dec 2015 13:06:37 GMT +Last-Modified: Fri, 20 May 2016 17:16:27 GMT Content-Length: 562 -Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes15/12/2015 14:59:36

ULib Server
HTTP/1.1 304 Not Modified -Date: Tue, 15 Dec 2015 14:59:54 GMT +Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes22/05/2016 13:43:19

ULib Server
HTTP/1.1 304 Not Modified +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Length: 0 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 1669 @@ -7354,10 +4598,10 @@ Content-Length: 1669 HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 -Content-Length: 1948 +Content-Length: 1937
 ssi_begin
@@ -7384,9 +4628,9 @@ Document name: ssi1.shtml
 
 Document URI: /SSI/ssi1.shtml
 
-It's now: Tuesday, 15-Dec-2015 14:59:54 GMT
+It's now: Sunday, 22-May-2016 13:43:31 GMT
 
-It's now: Tuesday, 15-Dec-2015 15:59:54 CET
+It's now: Sunday, 22-May-2016 15:43:31 CEST
 
 This page is:     179 Bytes
 
@@ -7409,14 +4653,14 @@ SCRIPT_NAME=/SSI/ssi1.shtml
 PATH_INFO=/SSI/ssi1.shtml
 HTTP_HOST=10.30.1.131
 SERVER_PROTOCOL=HTTP/1.1
-SERVER_ADDR=10.1.55.83
+SERVER_ADDR=
 DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
 GATEWAY_INTERFACE=CGI/1.1
 SERVER_SOFTWARE=ULib/1.4.2
-REMOTE_PORT=52346
+REMOTE_PORT=51426
 REMOTE_ADDR=127.0.0.1
 SESSION_ID=127.0.0.1:0
-REQUEST_ID=127.0.0.1:52346:0
+REQUEST_ID=127.0.0.1:51426:0
 PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
 PATH=/usr/local/bin:/usr/bin:/bin
 HTTP_X_SENDFILE=puppamelo
@@ -7427,14 +4671,14 @@ end   PRINTENV
 start LS
 --------------
 total 392
-drwxr-xr-x 3 apache apache   4096 Oct 30 16:21 .
-drwxr-xr-x 8 apache apache 368640 Dec 15 15:59 ..
-drwxr-xr-x 3 apache apache   4096 Aug 25  2014 earth
--rw-r--r-- 1 apache apache    179 Aug 12 15:43 embed.c
--rw-r--r-- 3 apache apache    160 Mar 28  2011 index.shtml
--rw-r--r-- 1 apache apache    352 Nov  8  2011 menu.shtml
--rw-r--r-- 1 apache apache    917 Oct 30 16:20 ssi1.shtml
--rw-r--r-- 1 apache apache   1190 Aug 25  2014 ssi2.shtml
+drwxr-xr-x 3 nobody nobody   4096 Oct 30  2015 .
+drwxr-xr-x 8 nobody nobody 368640 May 22 15:43 ..
+drwxr-xr-x 3 nobody nobody   4096 Aug 25  2014 earth
+-rw-r--r-- 1 nobody nobody    179 Aug 12  2015 embed.c
+-rw-r--r-- 3 nobody nobody    160 Mar 28  2011 index.shtml
+-rw-r--r-- 1 nobody nobody    352 Nov  8  2011 menu.shtml
+-rw-r--r-- 1 nobody nobody    917 Oct 30  2015 ssi1.shtml
+-rw-r--r-- 1 nobody nobody   1190 Aug 25  2014 ssi2.shtml
 --------------
 end   LS
 
@@ -7464,12 +4708,12 @@ SSI_END
 ssi_end
 
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Length: 115 X-Real-IP: 10.30.1.131 -Set-Cookie: ulib.s1=; expires=Mon, 14 Dec 2015 14:59:54 GMT -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343530323737393934267cea8ab0c563229d9fdac315408123a8; expires=Wed, 16 Dec 2015 14:59:54 GMT +Set-Cookie: ulib.s1=; expires=Sat, 21 May 2016 13:43:31 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134363430313130313126c0834b39756625951f30af8134775236; expires=Mon, 23 May 2016 13:43:31 GMT Set-Cookie: TestCookie=pippo Content-Type: text/html; charset=iso-8859-1 @@ -7477,26 +4721,26 @@ UID = Steve Johnson HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 ULIB_SESSION = HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Encoding: gzip Content-Type: text/html; charset=UTF-8 Content-Length: 718 UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Length: 211 Content-Type: text/html

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Length: 72 Content-Type: application/jsonrequest -{"user":"doctoravatar@penzance.com","forecast":7,"t":"vlIj","zip":94089}HTTP/1.1 302 Moved Temporarily -Date: Tue, 15 Dec 2015 14:59:54 GMT +{"user":"doctoravatar@penzance.com","t":"vlIj","forecast":7,"zip":94089}HTTP/1.1 302 Moved Temporarily +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7515,7 +4759,7 @@ Content-Length: 365
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -7530,7 +4774,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7545,7 +4789,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7560,7 +4804,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7575,7 +4819,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7590,7 +4834,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7605,7 +4849,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7620,7 +4864,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7635,7 +4879,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7650,7 +4894,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7665,7 +4909,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7681,7 +4925,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -7696,7 +4940,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -7711,7 +4955,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7726,7 +4970,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7741,7 +4985,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7756,7 +5000,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7771,7 +5015,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7786,7 +5030,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7801,7 +5045,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7816,7 +5060,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7831,7 +5075,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 356 @@ -7846,7 +5090,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -7862,7 +5106,7 @@ Content-Length: 356
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -7877,15 +5121,15 @@ Content-Length: 249
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: image/x-icon -Expires: Wed, 14 Dec 2016 14:59:53 GMT +Expires: Mon, 22 May 2017 13:43:30 GMT Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT Content-Length: 318 (( Fi " " " " " 33333HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -7900,7 +5144,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 273 @@ -7915,7 +5159,7 @@ Content-Length: 273
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 267 @@ -7930,7 +5174,7 @@ Content-Length: 267
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 280 @@ -7945,7 +5189,7 @@ Content-Length: 280
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 282 @@ -7960,7 +5204,7 @@ Content-Length: 282
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -7975,7 +5219,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 269 @@ -7990,7 +5234,7 @@ Content-Length: 269
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 271 @@ -8005,7 +5249,7 @@ Content-Length: 271
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 276 @@ -8020,7 +5264,7 @@ Content-Length: 276
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -8035,7 +5279,7 @@ Content-Length: 249
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 265 @@ -8050,7 +5294,7 @@ Content-Length: 265
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 249 @@ -8067,10 +5311,10 @@ Content-Length: 249 HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade -Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= +Sec-WebSocket-Accept: VzJxP+tHGlMfy1auQZCP4w== HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 259 @@ -8085,7 +5329,7 @@ Content-Length: 259
ULib Server
HTTP/1.1 403 Forbidden -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 248 @@ -8100,7 +5344,7 @@ Content-Length: 248
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -8115,7 +5359,7 @@ Content-Length: 254
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 253 @@ -8130,7 +5374,7 @@ Content-Length: 253
ULib Server
HTTP/1.1 400 Bad Request -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -8146,7 +5390,7 @@ Content-Length: 272
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 257 @@ -8161,7 +5405,7 @@ Content-Length: 257
ULib Server
HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/html; charset=UTF-8 Content-Length: 254 @@ -8176,37 +5420,37 @@ Content-Length: 254
ULib Server
HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 200 OK -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Content-Type: text/plain; charset=UTF-8 Content-Length: 13 Hello, World!HTTP/1.1 404 Not Found -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close Content-Type: text/html; charset=UTF-8 @@ -8222,10 +5466,2766 @@ Content-Length: 255
ULib Server
HTTP/1.1 204 No Content -Date: Tue, 15 Dec 2015 14:59:54 GMT +Date: Sun, 22 May 2016 13:43:31 GMT Server: ULib Connection: close -Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343530323737393934267cea8ab0c563229d9fdac315408123a8; expires=Wed, 16 Dec 2015 14:59:54 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e263134363430313130313126c0834b39756625951f30af8134775236; expires=Mon, 23 May 2016 13:43:31 GMT +Content-Length: 0 + + + + + + + + + + + + + +
Your file have been uploaded!

+ File #1: /uploads/vuoto.txt
+
+
+ Go Back
+ + + + + + + + + + + + + + +
Your file have been uploaded!

+ File #1: /uploads/operazione.xml
+
+
+ Go Back
+ + +HTTP/1.1 505 HTTP Version Not Supported +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Length: 0 + +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/index.php" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 411 Length Required +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Length: 0 + +HTTP/1.1 413 Request Entity Too Large +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Length: 0 + +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE +Content-Length: 0 + +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/index.php" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 257 + +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 344 + + + +404 Not Found + +

Not Found

+

Your requested URL "/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 403 Forbidden +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 304 + + + +403 Forbidden + +

Forbidden

+

You don't have permission to access "/../../../../linux/include/generated/uapi/linux/version.h" on this server

+
+
ULib Server
+ +HTTP/1.1 500 Internal Server Error +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 548 + + + +500 Internal Server Error + +

Internal Server Error

+

The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 21 + +pippo pluto paperino +HTTP/1.1 401 Authorization Required +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +WWW-Authenticate: Basic realm="Protected Area" +Content-Length: 444 + + + +401 Authorization Required + +

Authorization Required

+

This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:33 GMT +Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT +Content-Length: 63 + +this is the web_server testsuite inp/http/data/index.html file +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Range: bytes 0-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:34 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 64 + +123456781234567 +345678903456789 +234567892345678 +012345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Range: bytes 0-31/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:34 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 32 + +123456781234567 +345678903456789 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Range: bytes 32-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:34 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 32 + +234567892345678 +012345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Range: bytes 32-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:34 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 32 + +234567892345678 +012345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 230 +Content-Type: multipart/byteranges; boundary="=_12898405265627047460" + + +--=_12898405265627047460 +Content-Range: bytes 0-0/64 +Content-Type: text/html; charset=UTF-8 + +1 +--=_12898405265627047460 +Content-Range: bytes 63-63/64 +Content-Type: text/html; charset=UTF-8 + + + +--=_12898405265627047460--HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Range: bytes 50-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:34 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 14 + +2345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 250 +Content-Type: multipart/byteranges; boundary="=_12898405265627047461" + + +--=_12898405265627047461 +Content-Range: bytes 10-19/64 +Content-Type: text/html; charset=UTF-8 + +34567 +3456 +--=_12898405265627047461 +Content-Range: bytes 50-59/64 +Content-Type: text/html; charset=UTF-8 + +2345670123 +--=_12898405265627047461--HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:34 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 64 + +123456781234567 +345678903456789 +234567892345678 +012345670123456 +HTTP/1.1 204 No Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 0 + +HTTP/1.1 204 No Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 0 + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Encoding: gzip +Content-Type: text/html; charset=UTF-8 +Last-Modified: Fri, 20 May 2016 17:16:27 GMT +Content-Length: 294 + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Last-Modified: Fri, 20 May 2016 17:16:27 GMT +Content-Length: 562 + +Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes22/05/2016 13:43:19

ULib Server
HTTP/1.1 304 Not Modified +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 0 + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 1669 + + + + Welcome to ULib Web Server! + + + + +
+

Welcome to ULib Web Server!

+
+ + +
+ + + + + + +
+ + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 1937 + +
+ssi_begin
+This page last updated: Friday, 30-Oct-2015 15:20:57 GMT
+
+ +1: ok + + +2: ok + + +3: ok + + +4: ok + + +
+SSI_BEGIN
+Name of user: nobody
+
+Document name: ssi1.shtml
+
+Document URI: /SSI/ssi1.shtml
+
+It's now: Sunday, 22-May-2016 13:43:34 GMT
+
+It's now: Sunday, 22-May-2016 15:43:34 CEST
+
+This page is:     179 Bytes
+
+This file last modified: August 12, 2015
+
+You're using: 
+
+$HTTP_X_SENDFILE: 
+
+
+start PRINTENV
+--------------
+QUERY_STRING=
+REQUEST_URI=/SSI/ssi1.shtml
+SERVER_NAME=stefano
+SERVER_PORT=8080
+CONTENT_LENGTH=0
+REQUEST_METHOD=GET
+SCRIPT_NAME=/SSI/ssi1.shtml
+PATH_INFO=/SSI/ssi1.shtml
+HTTP_HOST=10.30.1.131
+SERVER_PROTOCOL=HTTP/1.1
+SERVER_ADDR=
+DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
+GATEWAY_INTERFACE=CGI/1.1
+SERVER_SOFTWARE=ULib/1.4.2
+REMOTE_PORT=51480
+REMOTE_ADDR=127.0.0.1
+SESSION_ID=127.0.0.1:0
+REQUEST_ID=127.0.0.1:51480:0
+PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
+PATH=/usr/local/bin:/usr/bin:/bin
+HTTP_X_SENDFILE=puppamelo
+--------------
+end   PRINTENV
+ 
+
+start LS
+--------------
+total 392
+drwxr-xr-x 3 nobody nobody   4096 Oct 30  2015 .
+drwxr-xr-x 8 nobody nobody 368640 May 22 15:43 ..
+drwxr-xr-x 3 nobody nobody   4096 Aug 25  2014 earth
+-rw-r--r-- 1 nobody nobody    179 Aug 12  2015 embed.c
+-rw-r--r-- 3 nobody nobody    160 Mar 28  2011 index.shtml
+-rw-r--r-- 1 nobody nobody    352 Nov  8  2011 menu.shtml
+-rw-r--r-- 1 nobody nobody    917 Oct 30  2015 ssi1.shtml
+-rw-r--r-- 1 nobody nobody   1190 Aug 25  2014 ssi2.shtml
+--------------
+end   LS
+
+start CGI
+--------------
+Content-Type: text/html
+
+You're not using Microsoft® Internet Explorer® 5.0
+--------------
+end   CGI
+SSI include failed!
+SSI include failed!
+/*int main(void) {
+  struct mg_context* ctx;
+  const char *options[] = {"listening_ports", LISTENING_PORT, NULL};
+
+  ctx = mg_start(callback, options);
+  pause();
+  return 0;
+}*/
+
+SSI_END
+
+ + +
+ssi_end
+
+HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 115 +X-Real-IP: 10.30.1.131 +Set-Cookie: ulib.s1=; expires=Sat, 21 May 2016 13:43:34 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343634303131303134265a4d5ec02b20bc041cda898d12964370; expires=Mon, 23 May 2016 13:43:34 GMT +Set-Cookie: TestCookie=pippo +Content-Type: text/html; charset=iso-8859-1 + +UID = Steve Johnson +HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 +ULIB_SESSION = +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Encoding: gzip +Content-Type: text/html; charset=UTF-8 +Content-Length: 718 + +UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 211 +Content-Type: text/html + +

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Length: 72 +Content-Type: application/jsonrequest + +{"user":"doctoravatar@penzance.com","t":"vlIj","forecast":7,"zip":94089}HTTP/1.1 302 Moved Temporarily +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Location: http://10.30.1.131/?ticket=U2FsdGVkX1+/AYaicDGB1EReb1+EErzD/ar1Wrv8wrXpYEj9RoN3RlzFWK5ykUyRMg4AicmBMNQsUQDWZENgiQ +X-Powered-By: PHP/5.2.6-pl7-gentoo +X-Powered-By: PHP/5.2.6-pl7-gentoo +Content-Length: 365 + + + +302 Moved Temporarily + +

Moved Temporarily

+

The document has moved here

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/uploader" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/uploader" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/uploader" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 249 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: image/x-icon +Expires: Mon, 22 May 2017 13:43:33 GMT +Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT +Content-Length: 318 + +(( Fi " " " " " 33333HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/dumbfuck" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 273 + + + +404 Not Found + +

Not Found

+

Your requested URL "/get_no_headers_no_body/world" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 267 + + + +404 Not Found + +

Not Found

+

Your requested URL "/get_one_header_no_body" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 280 + + + +404 Not Found + +

Not Found

+

Your requested URL "/get_funky_content_length_body_hello" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 282 + + + +404 Not Found + +

Not Found

+

Your requested URL "/post_identity_body_world?q=search#hey" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 271 + + + +404 Not Found + +

Not Found

+

Your requested URL "/post_chunked_all_your_base" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 269 + + + +404 Not Found + +

Not Found

+

Your requested URL "/two_chunks_mult_zero_end" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 271 + + + +404 Not Found + +

Not Found

+

Your requested URL "/chunked_w_trailing_headers" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 276 + + + +404 Not Found + +

Not Found

+

Your requested URL "/chunked_w_bullshit_after_length" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 249 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 265 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test.cgi?foo=bar?baz" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 249 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= + +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 259 + + + +404 Not Found + +

Not Found

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 403 Forbidden +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 248 + + + +403 Forbidden + +

Forbidden

+

You don't have permission to access "*" on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/index.php" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/file.txt" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 272 + + + +400 Bad Request + +

Bad Request

+

Your requested URL "/" was a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 257 + + + +404 Not Found + +

Not Found

+

Your requested URL "/bag.xml?ix=2" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/help.html" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 255 + + + +404 Not Found + +

Not Found

+

Your requested URL "/plaintext1" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 204 No Content +Date: Sun, 22 May 2016 13:43:34 GMT +Server: ULib +Connection: close +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e2631343634303131303134265a4d5ec02b20bc041cda898d12964370; expires=Mon, 23 May 2016 13:43:34 GMT +Content-Length: 0 + + + + + + + + + + + + + +
Your file have been uploaded!

+ File #1: /uploads/vuoto.txt
+
+
+ Go Back
+ + + + + + + + + + + + + + +
Your file have been uploaded!

+ File #1: /uploads/operazione.xml
+
+
+ Go Back
+ + +HTTP/1.1 505 HTTP Version Not Supported +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Length: 0 + +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/index.php" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 411 Length Required +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Length: 0 + +HTTP/1.1 413 Request Entity Too Large +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Length: 0 + +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 263 + + + +400 Bad Request + +

Bad Request

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS, TRACE, CONNECT, COPY, MOVE, LOCK, UNLOCK, MKCOL, PROPFIND, PATCH, PURGE, MERGE, REPORT, CHECKOUT, MKACTIVITY, NOTIFY, MSEARCH, SUBSCRIBE, UNSUBSCRIBE +Content-Length: 0 + +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/index.php" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 257 + +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 344 + + + +404 Not Found + +

Not Found

+

Your requested URL "/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 403 Forbidden +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 304 + + + +403 Forbidden + +

Forbidden

+

You don't have permission to access "/../../../../linux/include/generated/uapi/linux/version.h" on this server

+
+
ULib Server
+ +HTTP/1.1 500 Internal Server Error +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 548 + + + +500 Internal Server Error + +

Internal Server Error

+

The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 21 + +pippo pluto paperino +HTTP/1.1 401 Authorization Required +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +WWW-Authenticate: Basic realm="Protected Area" +Content-Length: 444 + + + +401 Authorization Required + +

Authorization Required

+

This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:37 GMT +Last-Modified: Fri, 20 Feb 2009 14:50:49 GMT +Content-Length: 63 + +this is the web_server testsuite inp/http/data/index.html file +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Range: bytes 0-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:38 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 64 + +123456781234567 +345678903456789 +234567892345678 +012345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Range: bytes 0-31/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:38 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 32 + +123456781234567 +345678903456789 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Range: bytes 32-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:38 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 32 + +234567892345678 +012345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Range: bytes 32-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:38 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 32 + +234567892345678 +012345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 230 +Content-Type: multipart/byteranges; boundary="=_18230667225264218240" + + +--=_18230667225264218240 +Content-Range: bytes 0-0/64 +Content-Type: text/html; charset=UTF-8 + +1 +--=_18230667225264218240 +Content-Range: bytes 63-63/64 +Content-Type: text/html; charset=UTF-8 + + + +--=_18230667225264218240--HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Range: bytes 50-63/64 +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:38 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 14 + +2345670123456 +HTTP/1.1 206 Partial Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 250 +Content-Type: multipart/byteranges; boundary="=_18230667225264218241" + + +--=_18230667225264218241 +Content-Range: bytes 10-19/64 +Content-Type: text/html; charset=UTF-8 + +34567 +3456 +--=_18230667225264218241 +Content-Range: bytes 50-59/64 +Content-Type: text/html; charset=UTF-8 + +2345670123 +--=_18230667225264218241--HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=us-ascii +Expires: Mon, 22 May 2017 13:43:38 GMT +Last-Modified: Sun, 02 Mar 2008 09:26:05 GMT +Content-Length: 64 + +123456781234567 +345678903456789 +234567892345678 +012345670123456 +HTTP/1.1 204 No Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 0 + +HTTP/1.1 204 No Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 0 + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Encoding: gzip +Content-Type: text/html; charset=UTF-8 +Last-Modified: Fri, 20 May 2016 17:16:27 GMT +Content-Length: 294 + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Last-Modified: Fri, 20 May 2016 17:16:27 GMT +Content-Length: 562 + +Index of tmp

Index of directory: tmp


Up one level
c 4 Bytes22/05/2016 13:43:19

ULib Server
HTTP/1.1 304 Not Modified +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 0 + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 1669 + + + + Welcome to ULib Web Server! + + + + +
+

Welcome to ULib Web Server!

+
+ + +
+ + + + + + +
+ + +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 1937 + +
+ssi_begin
+This page last updated: Friday, 30-Oct-2015 15:20:57 GMT
+
+ +1: ok + + +2: ok + + +3: ok + + +4: ok + + +
+SSI_BEGIN
+Name of user: nobody
+
+Document name: ssi1.shtml
+
+Document URI: /SSI/ssi1.shtml
+
+It's now: Sunday, 22-May-2016 13:43:38 GMT
+
+It's now: Sunday, 22-May-2016 15:43:38 CEST
+
+This page is:     179 Bytes
+
+This file last modified: August 12, 2015
+
+You're using: 
+
+$HTTP_X_SENDFILE: 
+
+
+start PRINTENV
+--------------
+QUERY_STRING=
+REQUEST_URI=/SSI/ssi1.shtml
+SERVER_NAME=stefano
+SERVER_PORT=8080
+CONTENT_LENGTH=0
+REQUEST_METHOD=GET
+SCRIPT_NAME=/SSI/ssi1.shtml
+PATH_INFO=/SSI/ssi1.shtml
+HTTP_HOST=10.30.1.131
+SERVER_PROTOCOL=HTTP/1.1
+SERVER_ADDR=
+DOCUMENT_ROOT=/usr/src/ULib-1.4.2/tests/examples/docroot
+GATEWAY_INTERFACE=CGI/1.1
+SERVER_SOFTWARE=ULib/1.4.2
+REMOTE_PORT=51534
+REMOTE_ADDR=127.0.0.1
+SESSION_ID=127.0.0.1:0
+REQUEST_ID=127.0.0.1:51534:0
+PWD=/usr/src/ULib-1.4.2/tests/examples/docroot
+PATH=/usr/local/bin:/usr/bin:/bin
+HTTP_X_SENDFILE=puppamelo
+--------------
+end   PRINTENV
+ 
+
+start LS
+--------------
+total 392
+drwxr-xr-x 3 nobody nobody   4096 Oct 30  2015 .
+drwxr-xr-x 8 nobody nobody 368640 May 22 15:43 ..
+drwxr-xr-x 3 nobody nobody   4096 Aug 25  2014 earth
+-rw-r--r-- 1 nobody nobody    179 Aug 12  2015 embed.c
+-rw-r--r-- 3 nobody nobody    160 Mar 28  2011 index.shtml
+-rw-r--r-- 1 nobody nobody    352 Nov  8  2011 menu.shtml
+-rw-r--r-- 1 nobody nobody    917 Oct 30  2015 ssi1.shtml
+-rw-r--r-- 1 nobody nobody   1190 Aug 25  2014 ssi2.shtml
+--------------
+end   LS
+
+start CGI
+--------------
+Content-Type: text/html
+
+You're not using Microsoft® Internet Explorer® 5.0
+--------------
+end   CGI
+SSI include failed!
+SSI include failed!
+/*int main(void) {
+  struct mg_context* ctx;
+  const char *options[] = {"listening_ports", LISTENING_PORT, NULL};
+
+  ctx = mg_start(callback, options);
+  pause();
+  return 0;
+}*/
+
+SSI_END
+
+ + +
+ssi_end
+
+HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 115 +X-Real-IP: 10.30.1.131 +Set-Cookie: ulib.s1=; expires=Sat, 21 May 2016 13:43:38 GMT +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e26313436343031313031382675193f7cb095b88e62b282b316209c15; expires=Mon, 23 May 2016 13:43:38 GMT +Set-Cookie: TestCookie=pippo +Content-Type: text/html; charset=iso-8859-1 + +UID = Steve Johnson +HTTP_COOKIE = name1=value1, name2=value2; name3=value3, name4=value4 +ULIB_SESSION = +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Encoding: gzip +Content-Type: text/html; charset=UTF-8 +Content-Length: 718 + +UQO0~8Im%40^Si  \''m;'iڲD%*cw\L,EJpJ j}'cxhXBl2RYXP<_V|5o7=(2XlUr΂v5 Iy:J27tU.h /=.`Br!w t6+٧ 9דHQ<|OEZ n[:i |O{DH[z3c5?_L&LVibl!&&֩H֐)+.C дް4|tb]PS]Xhonyb)'̃F;2N"JSZʼnɼ,䴎2yB" ,L.uJ3&PdKuӹI“`YɿGQe\ז!9*NIvekRNIVHw9YuP>̎:vtzWf"X R?IRc:LmUEcO>?tt=OuBaiS-ELi..ek=wjm1 p_N/CrBէùVJ -B>prYI𾧫svNIIKltw?mMc{ *HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 211 +Content-Type: text/html + +

Esempio di CGI

scritto in linguaggio rubyHTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Length: 72 +Content-Type: application/jsonrequest + +{"user":"doctoravatar@penzance.com","t":"vlIj","forecast":7,"zip":94089}HTTP/1.1 302 Moved Temporarily +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Location: http://10.30.1.131/?ticket=U2FsdGVkX1+/AYaicDGB1EReb1+EErzD/ar1Wrv8wrXpYEj9RoN3RlzFWK5ykUyRMg4AicmBMNQsUQDWZENgiQ +X-Powered-By: PHP/5.2.6-pl7-gentoo +X-Powered-By: PHP/5.2.6-pl7-gentoo +Content-Length: 365 + + + +302 Moved Temporarily + +

Moved Temporarily

+

The document has moved here

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/uploader" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/uploader" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/uploader" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.63&gateway=151.11.47.120%3A5280&ap=01%40151.11.47." was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 356 + + + +404 Not Found + +

Not Found

+

Your requested URL "/info?Mac=00%3A00%3A00%3A00%3A00%3A00&ip=172.22.3.108&gateway=151.11.47.120%3A5280&ap=01%40151.11.47" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 249 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: image/x-icon +Expires: Mon, 22 May 2017 13:43:37 GMT +Last-Modified: Fri, 24 Jul 2009 16:01:29 GMT +Content-Length: 318 + +(( Fi " " " " " 33333HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/dumbfuck" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 273 + + + +404 Not Found + +

Not Found

+

Your requested URL "/get_no_headers_no_body/world" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 267 + + + +404 Not Found + +

Not Found

+

Your requested URL "/get_one_header_no_body" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 280 + + + +404 Not Found + +

Not Found

+

Your requested URL "/get_funky_content_length_body_hello" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 282 + + + +404 Not Found + +

Not Found

+

Your requested URL "/post_identity_body_world?q=search#hey" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 271 + + + +404 Not Found + +

Not Found

+

Your requested URL "/post_chunked_all_your_base" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 269 + + + +404 Not Found + +

Not Found

+

Your requested URL "/two_chunks_mult_zero_end" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 271 + + + +404 Not Found + +

Not Found

+

Your requested URL "/chunked_w_trailing_headers" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 276 + + + +404 Not Found + +

Not Found

+

Your requested URL "/chunked_w_bullshit_after_length" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 249 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 265 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test.cgi?foo=bar?baz" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 249 + + + +404 Not Found + +

Not Found

+

Your requested URL "/test" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade +Sec-WebSocket-Accept: 1PREvfQL/FH1NDhD6lPH7Q== + +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 259 + + + +404 Not Found + +

Not Found

+

Your browser sent a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 403 Forbidden +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 248 + + + +403 Forbidden + +

Forbidden

+

You don't have permission to access "*" on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/index.php" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 253 + + + +404 Not Found + +

Not Found

+

Your requested URL "/file.txt" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 400 Bad Request +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 272 + + + +400 Bad Request + +

Bad Request

+

Your requested URL "/" was a request that this server could not understand

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 257 + + + +404 Not Found + +

Not Found

+

Your requested URL "/bag.xml?ix=2" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/html; charset=UTF-8 +Content-Length: 254 + + + +404 Not Found + +

Not Found

+

Your requested URL "/help.html" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 200 OK +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Content-Type: text/plain; charset=UTF-8 +Content-Length: 13 + +Hello, World!HTTP/1.1 404 Not Found +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Content-Type: text/html; charset=UTF-8 +Content-Length: 255 + + + +404 Not Found + +

Not Found

+

Your requested URL "/plaintext1" was not found on this server

+
+
ULib Server
+ +HTTP/1.1 204 No Content +Date: Sun, 22 May 2016 13:43:38 GMT +Server: ULib +Connection: close +Set-Cookie: ulib.s0=5374657665204a6f686e736f6e26313436343031313031382675193f7cb095b88e62b282b316209c15; expires=Mon, 23 May 2016 13:43:38 GMT Content-Length: 0