I have captured the ethernet packets, as I called the website.
There are 2 HTTP Packets
1. packet GET /index.html HTTP/1.1
2. packet Continuation
The second packet includes the last 77bytes of index.html. But where is the beginning data from index.html?
Next, I tried to create a new smaller index.html.
<html>
<head><title>Test</title></head>
<body bgcolor="white" text="black">
<td>Hello</td>
</body>
</html>
J copied this new index.html into home/httpd
Now I can see it in the web browser.
As I now captured the traffic, I saw 2 packets again.
1. packet GET /index.html HTTP/1.1
2. packet HPPT/1.0 200 OK (text/html)
This 2. packet includes the index.html.
Whats wrong with the bigger index.html? Where is the first data? And what is the packet Continuation?