Juan Pablo Calomino wrote:
I'm seeing something strange. I tail -f access.log|boston, and then i open a browser and enter "https://www.bankboston.com.ar", I hit enter, and nothing happens in the tail. Only when I click the "Stop" button, I see: 1169582605.993 8860 xx.xx.xx.xx TCP_MISS/000 95 CONNECT www.bankboston.com.ar:443 - FIRST_UP_PARENT/127.0.0.1 - Why can this be? Thanks, Juan Pablo.
Browsers tunnel HTTPS requests via the CONNECT method. A tunnel is opened at the beginning of the request and closed it at the end. Requests are not logged until completion (you'd see the same thing, with a big download over HTTP). The 000 result code means the request was canceled before any reply was seen.
Chris