0=read()에 대해서 문의드립니다.

shean0의 이미지

안녕하세요.
시스템 환경은 다음과 같구요..
솔라리스에서 tcp통신을 구현해서 사용중입니다.

 무선통신 client --->요청 --> 서버
   [서버에서: 요청데이터 read_len이 return하는 시간이 12초 정도 걸립니다]
                        <--응답 ---
                      :접속 끊음.  이후 이것을 반복

아래처럼 read_len 이라는 것을 만들어 사용중인데요..
지금 까지는
nread==0 이면 continue로 처리했는데.. 그러니.. 좀비처럼 남아있는 프로세스가 생기더군요.
그래서 nread==0 도 에러로 처리했더니.. 네트웨크 딜레이 때문인지...
읽다가 printf("[EOF continue]\n ");여기로 들어가고 에러로 처리..됩니다.
음.. 이것의 의미 nread==0 의 의미는 어떻게 해석을 해야하는지요.
continue로 하고, 나중에 sock이 끊어지면 return 으로 해야 하나요??

다른 분들은 어떻게 하시는지... nread==0 의 의미는??

unsigned int read_len(int sok,char * buf,unsigned int len)
{
  unsigned int r_len;
  unsigned int nleft,nread;
  char *p;
  int count=0;
  nleft=len;
  p=buf;

  while(nleft>0)
  {
     printf("count[%d]:read_len::nlenf[%d]\n",count,nleft); ;
     nread=read(sok,p,nleft);
     if(nread<0)
     {
       printf("Reading Error\n");
       return ERROR;
      /* return(nread);  */
     }
     else if(nread==0)
     {
         count++;
          printf("[EOF continue]\n ");
          /*       continue;  여기를 두어야 하는가?? */ 
         return ERROR;  /*   break; EOF*/
     }
     else {
          printf("OK[count]\n",count);
     }
     nleft -=nread;
     p +=nread;
     count++;
     if(count>100)
              break;/* 파싱에서 길이가 틀리기 때문에 에러로 처리된다 */
     else usleep(10);
  }
  printf("len[%d]-nleft[%d]\n",len,nleft);
  return (len-nleft);  /* return >= 0 */

}
bugiii의 이미지

read 의 리턴값이 0 이면 접속 종료를 알려주는 것입니다.
대부분의 경우 close를 호출하고 끝내야 하는 것 아닌가 합니다만...
그럼, 이만...

wooho47의 이미지

return ERROR 로 하시면 될듯..
저두 0 과 같은면 소켓을 종료하였습니다.

hi 용

댓글 달기

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