소켓 프로그램을 짰습니다.. 근데 오류가나서요;;;

soylove의 이미지

//this is client side

#define SERVER_TCP_PORT 5000
#define SERVER_HOST_ADDR "localhost"

int main(){
int cli_sockfd,clilen;
char data[10]="0.05 9";
char reply[20] = "heheheheh";
struct sockaddr_in cli_addr;
clilen = sizeof(struct sockaddr_in);

memset(&cli_addr, 0, sizeof(cli_addr));
cli_addr.sin_family = AF_INET;
cli_addr.sin_addr.s_addr = inet_addr(SERVER_HOST_ADDR);
cli_addr.sin_port = htons(SERVER_TCP_PORT);

if((cli_sockfd = socket(AF_INET,SOCK_STREAM,0)) == -1)
printf("error in clisockfd\n");
else
printf("good in cli_sockfd\n");
printf("%d is cli_sockfd\n",cli_sockfd);
if(connect(cli_sockfd,(struct sockaddr*)&cli_addr,sizeof(struct sockaddr_in))== -1)

printf("no! \n");
else printf("yes! \n");

/* transmit data*/
}

위와 같이 소스를 짰습니다.
근데 실행해보면
"good in cli_sockfd"가 나오고 (소켓이 제대로 생성된것이라고 생각합니다)
근데 connection에서 계속 "no"가 나옵니다.

책같은데서 보면서 아무리 봐도 틀린부분이 없는거 같은데 connection이 안된다고 나오는 이유가 뭔지좀 알려주세요..

소켓통신 처음해보는거라..^^;;;

flyingykk의 이미지

혹시 서버 역할을 하는 프로그램을 실행시키셨는지...

P.S.
제가 첫 번째 줄의 '//this is client side'를 보고 착각했던 것 같습니다.

urmajest의 이미지

"localhost" 대신에 "127.0.0.1"로 해보세요.

man inet_addr

...converts ... from numbers-and-dors notation into binary data in network byte order. ...

address resolve를 하실려면 inet_addr에서 INADDR_NONE이 리턴된 경우에 gethostbyname을 호출해서 ip address를
얻어오시면 됩니다 ^^

ssif의 이미지

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
#include <stdlib.h>

#define SERVER_TCP_PORT 4444
#define SERVER_HOST_ADDR "127.0.0.1"

int main()
{
    int cli_sockfd,clilen;
    char data[10]="0.05 9";
    char reply[20] = "heheheheh";
    struct sockaddr_in cli_addr;
    clilen = sizeof(struct sockaddr_in);

    memset(&cli_addr, 0, sizeof(cli_addr));
    cli_addr.sin_family = AF_INET;
    cli_addr.sin_addr.s_addr = inet_addr(SERVER_HOST_ADDR);
    cli_addr.sin_port = htons(SERVER_TCP_PORT);

    if((cli_sockfd = socket(AF_INET,SOCK_STREAM,0))<0)
        printf("error in clisockfd\n");
    else
        printf("good in cli_sockfd\n");

    printf("%d is cli_sockfd\n",cli_sockfd);
    if(connect(cli_sockfd,(struct sockaddr*)&cli_addr,sizeof(struct sockaddr_in))== -1)
        printf("no! \n");
    else printf("yes! \n");

/* transmit data*/

위와 같이 조금 수정했습니다.
#define 부분입니다.

결과는

# ./test
good in cli_sockfd
3 is cli_sockfd
Accept error : : Success
yes!
[1]+  Done                    ./server_sock 4444  (wd: /home/socket_test)
(wd now: /home/socket_test/linux_sock)


입니다.

같은 부분 공부하는 분이어서 잠시 테스트 해보았습니다.

..............................................
서버 프로그램은 joinc에 있던 예제중 하나였습니다.
전혀 수정 안하고 포트만 지정해서 실행 후 클라이언트프로그램에서 포트번호와 서버 ip만 살짝 바꾸었습니다.

봄들판에서다

댓글 달기

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