g++ 컴파일 시 버전 관련

pubsoo의 이미지

제가 완전 초보라 리눅스도 잘 모르고 C++ 은 더욱모르고 C&P로 공부중입니다.

소켓서버 프로그램인대요

컴파일시(4.1.1) 아무이상 없이 잘 종료되고 실행도 됩니다.

문제는 소켓서버에 접속하면 접속한 클라이언트 아이피를 못가저오고
0.0.0.0 으로 가져오는대요

이 소스를 3.4.6 으로 컴파일이하면 아이피를 제대로 가저옵니다.

버전별로 차이가 있을거라 생각되지만 초보라그런지 찾아봐도 해결책을 못찾겠고

생각에는 구조체에 문제가 있을거 같은대요...

초보라 그런지 질문도 힘드네요

구조체 부분이고요
struct sockaddr_in serveraddr;
bzero(&serveraddr, sizeof(serveraddr));
serveraddr.sin_family = AF_INET;
serveraddr.sin_addr.s_addr = htonl(INADDR_ANY);
serveraddr.sin_port = htons(atoi(argv[1]));

이부분에 ip값을 찍어봤는대 0.0.0.0 이 나옵니다.
client_sockfd = accept(server_sockfd, (struct sockaddr*)&clientaddr, (socklen_t*)&client_len);
client cl;
cl.ip = inet_ntoa(clientaddr.sin_addr);
cl.fd = client_sockfd;
clients.push_back(cl);

4.1.1 버전에서 바뀐부분이 어떤것인가요... ^^;;

mg2000의 이미지

제가 4.2.3에서 컴파일해도 잘 돌아갔었는데...

4.1.1이라고 안 돌아갈 것 같지는 않은데요.

뭔가 소스가 잘못된 부분이 있지 않을까 생각이 듭니다만...

전체 소스를 봐야 알겠지만...

pubsoo의 이미지

인터넷 여기져기서 찾아서 공부중인대 하나도 모르겠내요 ^^;;

컥 인클루드가 테그로 먹어 머리내요... 부득이하게 [] 로 대체 합니다.

에공... 벡터도 먹어버리내요... 그냥 첨부파일로...

댓글 첨부 파일: 
첨부파일 크기
Package icon chat_server2.zip1.25 KB
mg2000의 이미지

소스를 보니, Thread를 생성해서, Thread안에서 ip를 확인하시는 것 같은데,

질문에서는 accept이후에 곧바로 ip를 확인하신다고 되어있고...

accept 이후에 곧바로 ip를 확인해도 ip가 0.0.0.0으로 출력되나요?

pubsoo의 이미지

디버깅도 애를 먹고 있어서 ^^;;

client_sockfd = accept(server_sockfd, (struct sockaddr*)&clientaddr, (socklen_t*)&client_len);
client cl;
cl.ip = inet_ntoa(clientaddr.sin_addr);

clientaddr.sin_addr 부분의 값을 바로 확인하는 방법을 몰라서요.. inet_ntoa 를 써야 출력이 가능하다는것은
찾아봐서 알겠는대 cl.ip 자체가 0.0.0.0 이 나오니 clientaddr.sin_addr 자체가 0.0.0.0 인지 inet_ntoa를 거치면서 0 이된건지
어디서 문제가 있는것인지 알수가 없고요..

이미 accept 할때 0.0.0.0 이니 쓰레드 생성되도 역시나 0.0.0.0 이 되는거 같더군요...

정안되면 c++ 을 버전 업해봐야겠내요.. ㅜㅜ

댓글 달기

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