While studying the HTTP protocol, I saw this in a response header field:
x-ec-custom-error: 1
I was using netcat to get example.com's main page through a proxy connection.
Here is all console comunication where this header appears:
$ nc -x (omitted proxy address):3128 -Xconnect www.example.com 80
GET http://www.example.com/ HTTP/1.1
Host: www.example.com
HTTP/1.1 200 OK
Accept-Ranges: bytes
Cache-Control: max-age=604800
Content-Type: text/html
Date: Fri, 07 Mar 2014 20:08:45 GMT
Etag: "359670651"
Expires: Fri, 14 Mar 2014 20:08:45 GMT
Last-Modified: Fri, 09 Aug 2013 23:54:35 GMT
Server: ECS (iad/19AB)
X-Cache: HIT
x-ec-custom-error: 1 <----------------HERE
Content-Length: 1270
(Omitted message body)
After noticing it, I tried searching thouroughly on google and on this site but I didn't find the answer anywhere, nor did the people who were discussing this with me.
Thanks in advance for all answers.