* 소켓의 생성과정

   ① 소켓 생성
   ② 연결의 요청


① 소켓 생성




② 연결의 요청





* hello_client.c

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/socket.h>

void error_handling(char * message);

int main(int argc, char *argv[]) {
        int sock;
        struct sockaddr_in serv_addr;
        char message[30];
        int str_len;

        if(argc != 3) {
                printf("Usage : %s <IP> <port>\n", argv[0]);
                exit(1);
        }

        sock = socket(PF_INET, SOCK_STREAM, 0); // 소켓 생성
        if(sock == -1)
                error_handling("socket() error");

        memset(&serv_addr, 0, sizeof(serv_addr));
        serv_addr.sin_family = AF_INET;
        serv_addr.sin_addr.s_addr = inet_addr(argv[1]);
        serv_addr.sin_port = htons(atoi(argv[2]));

        if(connect(sock, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) == -1) // 서버 프로그램에 연결을 요청
                error_handling("connect() error");

        str_len = read(sock, message, sizeof(message) - 1);
        if(str_len == -1)
                error_handling("read() error");

        printf("Message from server : %s \n", message);
        close(sock);
        return 0;
}

void error_handling(char * message) {
        fputs(message, stderr);
        fputc('\n', stderr);
        exit(1);
}


[ksh@localhost 110704]$ ./hello_server 9001&
[4] 10256
[ksh@localhost 110704]$ ./hello_client 127.0.0.1 9001
Message from server : Hello World!
[4]   Done                    ./hello_server 9001
[ksh@localhost 110704]$

'Programming > Socket' 카테고리의 다른 글

저수준 파일 입출력과 파일 디스크립터  (2) 2011.07.04
전화를 받는 소켓의 구현  (0) 2011.07.04

+ Recent posts