본문 바로가기

컴퓨터/C

C HTTP Request, Response 요청, 응답 메시지

I. Request Message 요청 메시지

요청 라인 GET /index.html HTTP/1.1
메시지 헤더 User-Agent: Mozilla/5.0
Accept: image/gif, image/jpeg
...
공백라인  
메시지 몸체 메시지 몸체는 POST 방식으로 요청 시에만 삽입된다.

II. Response Message 응답 메시지

상태 라인 HTTP/1.1 200 OK
메시지 헤더 Server: SimpleWebServer
Content-type: text/html
Content-length: 2048
...
공백 라인  
메시지 몸체 <html>
...
<body>
...
</html>

'컴퓨터 > C' 카테고리의 다른 글

C system()  (0) 2022.11.07
C buffer 버퍼  (0) 2022.11.07
C TCP/IP echo server, client 에코 서버, 클라이언트  (0) 2022.11.06
C fdopen() 스트림 열기  (0) 2022.11.06
C atoi()  (0) 2022.11.06