nonblocking socket 관련해서요.

jee89의 이미지

int main( int argc , char **argv )
{
    char buf[2000];
    int nValue;
	int nRet;

	   gstServer.sin_family = AF_INET;
       gstServer.sin_port = htons( 7000 );
       if ( ( nRet = inet_pton( AF_INET , "192.168.10.220" , &gstServer.sin_addr ) ) < 0 )
        {
                perror( "inet_pton" );
								return -1;
        }
        else if ( nRet == 0 )
        {
                perror( "address is not valid." );
								return -1;
        }
lb_create_socket:
        while ( 1 )
        {
			    if ( ( gnSockfd = socket( AF_INET , SOCK_STREAM , 0 ) ) < 0 )
        		{
					perror( "socket call failed.\n" );
                	sleep( 1 );
					continue;
        		}
        		if ( ( gnConnfd = connect( gnSockfd , ( struct sockaddr * )&gstServer , sizeof ( struct sockaddr_in ) ) ) < 0 )
        		{
						    perror( "connect call failed" );
						    close( gnSockfd );
						    sleep( 1 );
						    continue;
        		}
       			break;
        } // end of while

        printf( "Realtime connect O.K.[%d][%d]\n" , gnSockfd , gnConnfd );
/* gnConnfd 가 0으로 나오거든요... 
0은 표준입력(stdin)의 번호인데 그럴수 있는건가요?*/
        
        // Non-blocking socket
        while ( 1 )
        {
        	if ( ( nValue = fcntl( gnConnfd , F_GETFL , 0 ) ) < 0 )
        	{
        	    perror( "fcntl( F_GETFL )" );
        	    sleep( 1 );
        		continue;
        	}
        	if ( ( nValue = fcntl( gnConnfd , F_SETFL , nValue | O_NONBLOCK ) ) < 0 )
        	{
        	    perror( "fcntl( F_SETFL O_NONBLOCK )" );
        	    sleep( 1 );
        		continue;
        	}
        	break;
       }
    SendTestData( argv[0] );
	return 0;
}

/*-------------------------------------------------------------------------
* FUNCTIONS   : SendTestData 
* SYNOPSIS    : 
* PARAMETERS  :
* returnS     :
* REMARKS     : TestData 전송
* ------------------------------------------------------------------------*/
int SendTestData( char *pData )
{
    int nSendMsgLen;
	int nwrite;
	int nread;
	socklen_t namelen;
    int nRet;
    int nValue;
    char *pbuf;  
    FILE *lfp;
    char buf[2000];
  
    printf( "%s" , "SendTestData ... start\n" );
    lfp = fopen( "testdata.txt" , "r" );
    while ( fgets( buf , sizeof buf , lfp ) )
    {
    /* Header setting */
    memset( gstSendDataMsg.szData , 0x00 , sizeof gstSendDataMsg.szData );
    SetSendMsgHeader( &gstSendDataMsg.stHeader , A_MSGID_DATA ); 
    memcpy( gstSendDataMsg.szData , buf , strlen( buf ) );
    nSendMsgLen = gstSendDataMsg.stHeader.stHeaderM.unMsgLen = strlen( buf );
    pbuf = (char*)&gstSendDataMsg;
    while ( nSendMsgLen )
    {
			if ( ( nwrite = write( gnConnfd , pbuf , nSendMsgLen ) ) < 0 )
			{
					if ( errno == EAGAIN )
					{
							fprintf( stderr , "EAGAIN write %s\n" , strerror( errno ) );
					}
					// error processing
					fprintf( stderr , "write %s\n" , strerror( errno ) );
					break;
			}
			else  /* if send is ok */
			{
					nSendMsgLen -= nwrite;
					pbuf += nwrite;
			}
    }
    }
    fclose( lfp );
    printf( "%s" , "SendTestData ... Good-Bye\n" );
	return 0;	
}

connect의 리턴값이 0으로 나오는데요...
stdin 과 중복해서 그런 값을 가질수 있나요?

kslee80의 이미지

connect() 의 리턴값이 connect 된 FD 던가요?
man 페이지나 connect() 함수에 대해 설명된 책을 다시 한번 찾아보시기를..

lovemyin의 이미지

int connect(int sockfd, const struct sockaddr *serv_addr, socklen_t addrlen);
connect 함수의 리턴값은 file descriptor이 아닙니다.
님이 말씀하신 file descriptor 값은 리턴값이 아니라 아규먼트로 넘겨주신 sockfd에 할당 되는 것입니다.

보통 0,1,2 번은 이미 할당되어 있기 때문에 알고 계신대로 0번이 할당되는 일은 없을 것입니다.

/***************************************************
* 가장 심플한 것이 가장 아름다운 것이다.
***************************************************/

댓글 달기

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