다시 소켓 프로그래밍 질문입니다.

정성완의 이미지

typedef struct packet_struct
{
unsigned int group;
unsigned int name_len;
unsigned int line_len;
char name[20];
char line[1024];
}chat_msg;

보낼 내용은 위와 같은 struct입니다.

chat_msg msg;

//msg 내용 설정

send(socket, (void*)&msg, sizeof(msg), 0);
이렇게 보내고, 받을때

chat_msg* r_msg = (chat_msg*)malloc(sizeof(chat_msg));
n = recv(socket, r_msg, sizeof(r_msg), 0);
if(n == sizeof(r_msg)) print_message(r_msg);

이런식으로 했습니다. 그랬더니 메세지 출력이 되었구요. 그럼 데이터는 전부 받았다는 말인데,
맨위 unsigned int group에만 이상한 값이 들어가 있고 나머진 0입니다. 왜 이럴까요.

환경은 INTEL칩셋이고 VMWARE사용중입니다.

밑에 글처럼 스트럭트 선언부 끝에 __attribute__ ((__packed__));를 해줬더니 맨위 group값은 제대로 나오고 나머지는 역시 NULL이네요

letsme의 이미지

typedef 를 사용하셨다면 __attribute__ ((__packed__)) 는 마지막이 아니라 chat_msg; 앞에 들어가야 합니다.

typedef struct packet_struct
{
    unsigned int group;
    unsigned int name_len;
    unsigned int line_len;
    char name[20];
    char line[1024];
} __attribute__ ((__packed__)) chat_msg;

하지만 질문 내용을 봤을 때 align 의 문제는 아닌 것으로 생각이 되네요.

정성완의 이미지

네... 그렇군요. 구조체 정렬문제가 아니라면 도대체 이유가 뭣일까요..
죽겠습니다.

익명사용자의 이미지

sizeof(r_msg)에서 r_msg는 포인터가 아닌가요?

sizeof(r_msg)의 값은 sizeof(chat_msg *)값과 같을 것 같은데...

sizeof(r_msg)를 sizeof(chat_msg)로 변경하셔야 할 것 같습니다.

추신: sizeof(r_msg)의 크기를 확인해보심이..

wontop의 이미지

제가 보기에도 이부분이 조금 의문스럽네요

sizeof()로 되어있는 부분을 모두 sizeof(chat_msg)이렇게 바꾸면 될듯도 싶고..

--------------------------------------------------
그걸 이루던지 이루지 못하던지 사람은 꿈에 이끌리는 법이죠.
'꿈'이라는 이름의 신의 순교자로서의 일생을

--------------------------------------------------
그걸 이루던지 이루지 못하던지 사람은 꿈에 이끌리는 법이죠.
'꿈'이라는 이름의 신의 순교자로서의 일생을

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.