Accept 된 Port의 local IP addres 확인 문제...

taifanz의 이미지

안녕하세요..
기초적인 Network Programing을 공부하고 있습니다.

어쩌다 보니 Server Program을 만들게 되었는데요...

Socket에 연결된 Remote Client의 IP, Port는 확인되지만..
Local IP address는 확인이 안되서...어찌해야 하나 싶어 문의드립니다..ㅠ.ㅠ

Server 동작은 IP 여러개, Port 여러개 Open 상태...
Client는 TCP로 Server에 접속, Text Data를 전송하고 종료하도록 되어 있습니다.

문제는..."getsockname"을 하면...
"Local IP address"가 나오지 않고 "Remote IP address"로 나타납니다..;; Accept 시 Thread 로 동작합니다.

==============Server ==============
int main()
{
소켓 생성
sockaddr_in = INADDR_ANY
socket bind, listen

while(1)
{
FD_SET, select 대기
if(FD_ISSET tcp socket)

client_sock_fd = accept(tcp_server_sock_fd[i],(struct sockaddr*)&client_addr,&sockaddr_len);

// Thread 생성
thread_id[l] = pthread_create(&p_thread[i], NULL, recv_msg_handle_tcp,(void*)&client_sock_fd );
}
}

void * recv_msg_handle_tcp(void * client_sock_fd)
{
struct sockaddr_in client_addr;
char read_buf[128];
int ret=0;
int addr_len=0;
struct sockaddr_in server_addr;

addr_len=sizeof(struct sockaddr_in);

getpeername(*(int*)client_sock_fd, (struct sockaddr*)&client_addr, &addr_len);
getsockname(*(int*)client_sock_fd, (struct sockaddr*)&server_addr, &addr_len); // <<<---- 요거이 문제네요..

while(1)
{
memset(read_buf, 0x00, 128);

ret=recv(*(int*)client_sock_fd, read_buf, 128, 0);
read_buf[ret-1] ='\0' ;
if(strncmp((char*)read_buf, "exit",4) == 0)
{
printf("Exit Command Received.\nExit Session..\n");
break;
}
if(ret != 0)
printf("Recv Data from IP-%s, Port-%u to IP-%s, Port-%u : %s\n",
inet_ntoa(client_addr.sin_addr), ntohs(client_addr.sin_port), //Client Info
inet_ntoa(server_addr.sin_addr), ntohs(server_addr.sin_port), //Server Info
(char*)read_buf);
}

close(*(int*)client_sock_fd);
}

Server 측에서 수신 Message 를 찍어 보면..

All Server Ready.
Recv Data from IP-192.168.136.1, Port-4709 to IP-192.168.136.1, Port-2000 : abcdefghij

이렇게....."Server IP"에 "Client IP"가 나타납니다. Server IP가 나와야 하는데 말이지요..;;

"다수의 IP"가 있을때, 연결된 "Local IP address"를 확인 할 수 있는 방법은 없을까요??

mithrandir의 이미지

inet_ntoa 때문에 그렇습니다.

Quote:

The string returned by inet_ntoa() resides in a static memory area.

inet_ntop 를 사용하세요.

언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net

언제나 삽질 - http://tisphie.net/typo/
프로그래밍 언어 개발 - http://langdev.net

taifanz의 이미지

덕분에 잘 해결하였습니다.^^
ㄱㅅㄱㅅ

댓글 달기

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