From c32a9db21024c64d0e05bc5befac633ab2524b79 Mon Sep 17 00:00:00 2001 From: IMHOJEONG <39ghwjd@naver.com> Date: Thu, 28 Sep 2023 21:41:51 +0900 Subject: [PATCH 1/2] [add]: add index.md for web/glossary/payload_body --- files/ko/glossary/payload_body/index.md | 40 +++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 files/ko/glossary/payload_body/index.md diff --git a/files/ko/glossary/payload_body/index.md b/files/ko/glossary/payload_body/index.md new file mode 100644 index 00000000000000..41699dbad8a458 --- /dev/null +++ b/files/ko/glossary/payload_body/index.md @@ -0,0 +1,40 @@ +--- +title: 페이로드 본문 (Payload body) +slug: Glossary/Payload_body +l10n: + sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34 +--- + +{{GlossarySidebar}} + +HTTP 메시지 **페이로드 본문(payload body)** 은 {{HTTPHeader("Transfer-Encoding", "전송 인코딩")}}이 적용되기 이전에 HTTP 메시지 본문 (있는 경우)으로 전송되는 데이터의 '정보' ('페이로드') 부분입니다. + +전송 인코딩을 사용하지 않으면, '페이로드 본문(payload body)'와 '메시지 본문(message body)'은 동일합니다! + +예를 들어, 이 응답의 메시지 본문에는 페이로드 본문인 "Mozilla Developer Network"만 포함되어 있습니다. + +```http +HTTP/1.1 200 OK +Content-Type: text/plain + +Mozilla Developer Network +``` + +대조적으로, 아래 응답은 '전송 인코딩'을 사용하여 페이로드 본문을 청크로 인코딩합니다. 전송된 페이로드 본문(정보)은 여전히 Mozilla Developer Network이지만, 메시지 본문에는 청크를 구분하기 위한 추가 데이터가 포함되어 있습니다. + +```http +HTTP/1.1 200 OK +Content-Type: text/plain +Transfer-Encoding: chunked + +7\r\n +Mozilla\r\n +9\r\n +Developer\r\n +7\r\n +Network\r\n +0\r\n +\r\n +``` + +자세한 정보를 보려면 [RFC 7230, section 3.3: Message Body](https://datatracker.ietf.org/doc/html/rfc7230#section-3.3)와 [RFC 7230, section 3.3.1: Transfer-Encoding](https://datatracker.ietf.org/doc/html/rfc7230#section-3.3.1)을 참조하세요. From ea4fc344b966b78d1595e1c5ba94a712a3892e65 Mon Sep 17 00:00:00 2001 From: HoJeong Im <39ghwjd@naver.com> Date: Tue, 10 Oct 2023 21:47:35 +0900 Subject: [PATCH 2/2] [ko]: remove carriage return Co-authored-by: hochan Lee --- files/ko/glossary/payload_body/index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/files/ko/glossary/payload_body/index.md b/files/ko/glossary/payload_body/index.md index 41699dbad8a458..04ef983848a12d 100644 --- a/files/ko/glossary/payload_body/index.md +++ b/files/ko/glossary/payload_body/index.md @@ -7,9 +7,7 @@ l10n: {{GlossarySidebar}} -HTTP 메시지 **페이로드 본문(payload body)** 은 {{HTTPHeader("Transfer-Encoding", "전송 인코딩")}}이 적용되기 이전에 HTTP 메시지 본문 (있는 경우)으로 전송되는 데이터의 '정보' ('페이로드') 부분입니다. - -전송 인코딩을 사용하지 않으면, '페이로드 본문(payload body)'와 '메시지 본문(message body)'은 동일합니다! +HTTP 메시지 **페이로드 본문(payload body)** 은 {{HTTPHeader("Transfer-Encoding", "전송 인코딩")}}이 적용되기 이전에 HTTP 메시지 본문(있는 경우)으로 전송되는 데이터의 '정보'('페이로드') 부분입니다. 전송 인코딩을 사용하지 않으면, '페이로드 본문(payload body)'와 '메시지 본문(message body)'은 동일합니다! 예를 들어, 이 응답의 메시지 본문에는 페이로드 본문인 "Mozilla Developer Network"만 포함되어 있습니다.