소켓 프로그래밍 문제...

kaypro의 이미지

안녕하세요?
거두절미하고 질문 드립니다.
TCP 통신을 리눅스(클라이언트) 장비와 HP 장비(서버, OS 는 HP-UX) 간에
하고 있는데, 서버를 종료 시키면 클라이언트쪽 프로세스가 먹통이 되버리는 현상이 발생합니다.

클라이언트 쪽으로 아무 시그널이나 날리면 (가령 strace -p [PID]),
send 함수에서 일부 데이터를 전송하다가 반환되는 것으로 보아 서버가 종료 되었음에도 불구하고
클라이언트는 계속 데이터를 전송하려고 하는 거 같습니다.

서버가 어떤 식으로 종료하든지 일단 종료되었다면 클라이언트 send 에서
에러가 반환되어야 하는 거 아닌가요?

양쪽 장비에서 네트워크 상태를 netstat 으로 보면, 서버 쪽은 FIN_WAIT_2로,
클라이언트 쪽은 CLOSE_WAIT 으로 나옵니다...
코딩이 잘못 되어서 이럴 수 있는 건가요?

세벌의 이미지

저도 거두절미하고 답변 드립니다.
coding이 잘못되면 물론 그럴 수 있습니다.

http//wiki.kldp.org/wiki.php/RTFM

cjy1126의 이미지

server에서 접속을 종료했으니...

server가 client에 fin을 보냅니다

그러면서 server는 fin-wait-1이 되죠.

client는 이 fin을 받고, close-wait 상태로 전이되며, 이에대한 ack를 server로 전송합니다.

server는 이 ack를 받고, fin-wait-2 상태에 빠집니다.

지금 상태가 이 상태라 생각됩니다.

만일 server가 client의 fin을 받았다면, server의 상태는 time-wait일것입니다.

코딩에서 접속종료 부분을 확인해보세요. (코드가 없으니 이말밖에는 -_-;;)

그리고 어떤 server인지는 모르지만, 가능하면 접속종료는 client에서 해주세요.

꼭 server에서 종료해야한다면 setsockopt에서 reusesock을 사용하세요.

ps: 저도 자세히 몰라서 tcp/ip 네트워크(스티븐님책 번역본) p326을 참고했습니다.

댓글 달기

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