Socket 프로그래밍 질문이 있습니다..

Long_run의 이미지

저는 일단 C 공부를 시작한지 한달여 정도 된 초보 프로그래머 이고..
UDP Socket 통신을 공부하는 중입니다..
아래는 Server와 Client로 Udp Socket 통신을 하는 프로그램 중 Server의 Source 입니다.

1. Client는 Server로 Data를 전송합니다.

2. Server는 Data가 날아온 Client의 IP Adress와 Port를 표시합니다.

3. 마지막으로 Data를 표시합니다.

==============================SOURCE===================================

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<arpa/inet.h>
#include<sys/types.h>
#include<sys/socket.h>
 
#define MAXLINE 511
 
int main(int argc, char *argv[])
{
        struct sockaddr_in servaddr, cliaddr;
 
        int s;
        int nbyte;
        int addrlen = sizeof(struct sockaddr);
 
        char buf[MAXLINE+1];
 
        if(argc != 2)
        {
                printf("Usage : %s port_number \n", argv[0]);
                exit(0);
        }
 
        if((s = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
        {
                perror("socket fail");
                exit(0);
        }
 
        bzero((char *)&servaddr, addrlen);
        bzero((char *)&cliaddr, addrlen);
 
        servaddr.sin_family = AF_INET;
        servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
        servaddr.sin_port = htons(atoi(argv[1]));
 
        if(bind(s, (struct sockaddr *)&servaddr, addrlen) < 0)
        {
                perror("bind Error");
                exit(0);
        }
 
        while(1)
        {
                puts("SERVER : WAITING REQUEST .... ");
                nbyte = recvfrom(s, buf, MAXLINE, 0, (struct sockaddr*)&cliaddr, &addrlen);
                if(nbyte < 0)
                {
                        perror("recvfrom fail");
                        exit(1);
                }
                buf[nbyte] = 0;
 
                <b>printf("%d:%d\n", cliaddr.sin_addr.s_addr, cliaddr.sin_port);</b>
                printf("%d byte recv : %s \n", nbyte, buf);
 
                if(sendto(s, buf, nbyte, 0, (struct sockaddr*)&cliaddr, addrlen) < 0)
                {
                        perror("sendto fail");
                        exit(1);
                }
                puts("sendto complete!");
        }
}

=========================================================================

동작을 시켜보면 숫자들이 나오는데요. 들어있는 값이 IP adress와 Port 값 같기는 한데...

Client의 IP adress 와 port를 표시하는 방법을

OOO.OOO.OOO.OOO:XXXX 형식으로 나타낼 수 있는 방법이 있나요? ㅠ ㅠ

익명 사용자의 이미지

inet 관련 함수를 찾아보세요..구글링 조금만 해도 나오는데.....

댓글 달기

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