mutex동기화의 thread기반 채팅 서버소스 질문입니다

ch0nn0m의 이미지

    for(i=0; i<clnt_number; i++){
 
        if(clnt_sock == clnt_socks[i]){
            for( ; i<clnt_number-1; i++)    
              clnt_socks[i]=clnt_socks[i+1];
            break;
        }
    }
    clnt_number--;
}
 
 
책에 많이 나오는 멀티쓰레드기반의 채팅서버 중에서 다른부분은 다 이해가 가는데 이부분이 잘 이해가 가지않습니다..클라이언트 연결이 종료되면 뒤의 소켓정보를 한개씩 앞으로 이동시켜 현재연결종료된 클라이언트 파일스크립터 정보를 삭제한다라고 되어있는데..
 
clnt_number=0;으로 전역변수로 선언했으니...
clnt_number는 0부터 시작하지 않습니까?? 배열과 같은 식으로...
 
그런데 for문에서 보면 i<clnt_number-1 이렇게 되면...-1을 하지 않아야 되는거 아닌지??
예를 들면 클라이언트가 3개가 접속했다고 치면 clnt_number=2가 되지 않습니까?? 0부터 시작했기 때문에...
그런데 거기다가 또 -1을 해버리면...??
 
 
질문이 참 글로 설명하기가 이상해서 이해하실지가...^^;
소케프로그래밍 공부한지가 얼마 안돼서...많은 도움 부탁드립니다
 
 
그리고 본문내용에 '<' 있으니 그 다음글자부터는 다 잘려 버리내요..그래서 글 전체를 <code>로 묶어버렸습니다...괜찮죠? ^^;;

redneval의 이미지

단순 배열질문인 것 같습니다.

클라이언트가 3개가 접속한 경우에는 clnt_number = 2 이 되고
이때 0번 클라이언트가 연결종료하면

다음 둘이 실행되야하니 for문에 i < clnt_number-1 이 들어가는게 맞겠네요.

clnt_socks[0]=clnt_socks[0+1];
clnt_socks[1]=clnt_socks[1+1];

--------------------Signature--------------------
Light a candle before cursing the darkness.

ch0nn0m의 이미지

답변 감사드립니다...^^

근데 위와 같은 조건으로 했을때...clnt_number=2일때...

i < clnt_number-1 이렇게 되면...마지막 소켓 for문은 i를 증가시키고 다시 돌고나면 조건식이

1 < 1 이렇게 되는게 아닌지??

그래서 마지막 소켓은 이동이 되지 않는것 아닌가요??

redneval의 이미지

위에 제가 잘못 적어놨네요.
``클라이언트가 3개가 접속한 경우에는 clnt_number = 2 이 되고''로 적은 것을
``클라이언트가 3개가 접속한 경우에는 clnt_number = 3 이 되고''로 바꿔서 읽어주시면 됩니다.

그러면 i < clnt_number-1 에서 1 < 3-1 이 되므로, 마지막 소켓은 이동합니다.

--------------------Signature--------------------
Light a candle before cursing the darkness.

댓글 달기

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