htons ntohs 값이 이상합니다..

eoen2eoen의 이미지

htons ntohs를 사용해서 unsigned short를 변환시켜봤더니

변수값이 256 미만이면, 즉 0~255 사이이면 0만 리턴을 하더라고요..

256이 넘어가면 256만 리턴을 하구요..

0x12 0x13 0x14 를 넣으면 0만 리턴해서 ntohs로 다시 바꿔도 0이 리턴이 되는데

왜 이럴까요?ㅠ 초보라 많이 어렵네요

eoen2eoen의 이미지

정확힌 htons으로 short를 변환 이후, memcpy를 통해 unsigned char에 메모리를 복사하고 나면 값을 읽으면 0이네요..
왜이럴까요... 하;;

chanik의 이미지

증상이 재현되는 짤막한 코드샘플을 만들어 올려주실 수 있나요?

eoen2eoen의 이미지

	uint8_t tempUnitId = 0x00;
	uint16_t unitId = header->hfHeaderExt.unitId;
	unitId =htons(unitId);
	tempUnitId |= unitId;
	printf("unitId = %#x, %#x\n", unitId);
	memcpy(&buffer(index),&tempUnitId, HEADER_BYTE_LEN_1);

unitId라는 unsighed short값을 가져와서 htons로 변환후 memcpy로 카피하는건데
저기서 찍을땐 값이 그나마 나옵니다
근데 buffer(index)값을 찍으면 나오질 않네요..

++++++수정
아 대괄호가 안보이네;
buffer(index) << 괄호를 대괄호로 생각해주세요; 배열입니다.,

qiiiiiiiip의 이미지

원질문을 수정하셔서, 다시 답글 답니다.

uint8_t tempUnitId;
2byte 데이터를 1byte 변수에 넣는 과정에서 잘리는 현상입니다.

----------

문제가 재현되는 짧은 완전한 코드를 올려주셔야 답을 쉽게 찾습니다.

https://en.wikipedia.org/wiki/Minimal_Working_Example

익명 사용자의 이미지

tempUnitId의 크기는 8비트고 unitId의 크기는 16비트네요. 따라서, tempUnitId |= unitId;에서 unitId의 정보가 일부 사라질 수 밖에 없구요. unitId 값에 대해 tempUnitId가 어떤 값을 가지길 점검해서, tempUnitId의 크기를 바꾸시던지 tempUnitId |= unitId;를 적절히 수정하셔야 할 듯하네요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.