간단한 소켓통신관련 코드 오류? 이유가 알고싶어요.. 도와주세요.

obshaha의 이미지

안녕하세요.. 소켓을 이용해 TCP/IP 프로그램을 짜는데요...
아래 코드를 실행하면 제대로 전달이 안되는것 같아서요.. 왜 그런지 이유를 모르겠네요.. ㅠ.ㅠ
우선... 구조체를 아래와 같이 생성합니다.

typedef struct info
{
int num;
char* name[10];
}z;

main()
{
char* buf[10]={"A","B","C","D","E","F","G","H","I","J"};
int i;
z s;

s.num=10;
for(i=0; i<10; i++)
s.name[i]=buf[i];

위에 생성된 구조체 변수 s를 send함수와 recv함수를 이용해 // sock이 서로 연결된 소켓이고, s가 구조체 변수라 치면...
send(sock,&s,sizeof(s),0);
recv(sock,&s,sizeof(s),0);

받으면 받은곳에서는 아래와 같이 출력을 하면 정수형 변수는 제대로 나오는데 포인터 배열로 선언한
name을 출력시 이상한 쓰레기값이 나오더라고요.. 이유를 모르겠습니다.
for(i=0; i<10; i++)
printf("%d, %s\n", s.num, s.name[i]);

send, recv시 구조체 변수 s에 내용 복사되서 값이 제대로 나와야 하지 않나요?
왜 정수형만 제대로 나오고 char*형은 이상한지.. ㅡㅡ; 도저히 모르겠네요..
send, recv를 잘못한건지.. 아니면 출력을 시킬때 잘못된건지..
구조체 변수 s 전달시 아예 잘못된건지.. 해결법을 알고 싶습니다. 도와주세요..

Fe.head의 이미지

char* name[10];
여기에는 스트링이 아닌 포인터 정보만 들어갑니다.

chr names[10][4]; 등으로 바꾸어 전송해보세요.

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

obshaha의 이미지

질문에 답해주셔서 감사드립니다. ^^
그런데.. 제가 구조체 안의 char* [] 에서 char[][]로 바꾸고..
대입을 시킨후 컴파일을 하니..
incompatible types when assigning to type ‘char[10]’ from type ‘char *’ 이런 오류가 나더군요..

대충 char*형을 char[10]로 못 바꾼다는거 같은데...
char *buf[10]={"A", .... "J"}; 도 [][] 꼴로 고치고 컴파일 해도 위와 똑같은 오류가 나더군요..

제가 실력이 부족해서.. 잘 모르겠네요 이것도 계속 해봐도 안되고.. ㅠ.ㅠ
이유좀 알수 있을까요?

klara의 이미지

char *name = malloc(10);
printf("%d\n", sizeof(name));

몇이 출력될지 생각해보세요.

댓글 달기

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