* Question
What are the processes involved in WebServer implementation? |
* Answer
The process implemented by WebServer is the process of HTTP communication.This includes the following steps for the server and browser: 1 Establish a TCP connection.Establish a TCP connection, listen to port 80 (WebServer default port), and enter the TCP callback function after receiving the TCP packet.
For example: GET/index.Html HTTP/1.1.3Web server response.After the client makes a request to the server, the server sends a response back to the client.The response message includes a status line, a response header, a blank line, and entity content. |
COMMENTS