Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

3 Answers

up vote 2 down vote accepted

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:

share|improve this answer
Thanks! I just realized that I only saw these using the HEAD script that came with perl. Hadn't thought they had been added in after the innitial request. Silly me. – CodeJoust Dec 11 '10 at 3:02

They are non-standard http response headers and they can have any meaning.

share|improve this answer

Are you, by any chance, using HTTP::Proxy? If you turn on [client_headers]1 there, you get these headers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.