Reputation: 3790
Lately, I've been seeing headers such as:
Client-Date: Fri, 10 Dec 2010 15:20:02 GMT
Client-Peer: 64.64.64.64:80
Client-Response-Num: 1
On a apache 2 server with php 5.3.
What is the purpose / meaning of these headers, and where/when are they inserted into the response?
Upvotes: 2
Views: 2324
Reputation: 2319
These HTTP headers are generated by libwww-perl - LWP::UserAgent (makes http requests / simulates web user agent) for debugging purposes and their meaning is exactly what their names imply.
References:
Upvotes: 3
Reputation: 127457
Are you, by any chance, using HTTP::Proxy? If you turn on [client_headers
]1 there, you get these headers.
Upvotes: 0
Reputation: 2135
They are non-standard http response headers and they can have any meaning.
Upvotes: 0