[완료] UDP Socket 프로그래밍 초보의 질문입니다~!!

Long_run의 이미지

==============================SOURCE===================================
#include
#include
#include
#include
#include
#include
#include

#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;

printf("%d, %d\n", cliaddr.sin_addr.s_addr, cliaddr.sin_port);
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!");
}
}
==========================================================================

리눅스 환경에서 C를 공부하고 있는 초보 프로그래머 입니다..
UDP 소켓 통신을 위한 예제를 실습하던 도중 궁금한 사항이 있어서 질문을 올려 봅니다
일단 프로그램의 목적은..

1. Client 에서 Server로 UDP를 통해 Data를 전송함.

2. Server에서는 Client로 부터 받은 Data를 표시함.

3. 동시에 Client로 부터 받은 정보를 기반으로 IP주소와 Port번호를 표시함.

위의 소스는 Server쪽 소스 입니다.
cliaddr.sin_addr.s_addr, cliaddr.sin_port에
IP랑 Port는 Client 쪽 정보가 담겨있는 것 같은데..

OOO.OOO.OOO.OOO:XXXX 형식으로 표시하기 위해서는 어떤 식으로 수정을 해야될까요..?

shint의 이미지

//OOO표현은 이런식이될거 같고.
printf("%3d.%3d.%3d.%3d:d", ad1,ad2,ad3,ad4,port);

//원하시는거는 요거 같습니다.
http://blog.naver.com/ratmsma/40026493235
printf("inet_ntoa : %d => %s\n", laddr.s_addr, inet_ntoa(laddr));

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

Long_run의 이미지

cliaddr이 structure Socketaddr_in이 s_addr의 멤버를 갖고 있지 않다는
결과 값이 나오게 되고 또한..

inet_ntoa 역시 블로그에서 언급한 header를 include 하였음에도
다음과 같은 경고문이 나오네요.. ㅠ ㅠ

error:incompatible type for argument 1 of 'inet_ntoa

int main(){
do(Anything);
your(Everthing);
best(Everytime);
}

shint의 이미지

윈도우에서는 이렇게 사용합니다.
http://blog.naver.com/bbaggu17/20102756053

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

댓글 달기

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