从C中的telnet套接字读取

时间:2013-11-22 14:24:35

标签: c sockets telnet

我想从CMTS中检索调制解调器列表,我在C中写了一个执行此操作的telnet客户端。 问题是有时我没有从CMTS获得所有数据。 (如果我减少'延迟'等待时间,我就越不能获得所有数据。)

char buf[50000];
int nbytes, sock;
struct sockaddr_in cmts;

cmts.sin_family      = AF_INET;
cmts.sin_port        = htons( 23 );
cmts.sin_addr.s_addr = inet_addr("192.168.1.1");

sock = socket( PF_INET, SOCK_STREAM, 0 );

if ( sock < 0 ) {
    perror("Socket creation error!");
    exit (EXIT_FAILURE);
}

if ( connect( sock, (struct sockaddr *) &cmts, sizeof( cmts ) ) < 0 ) {
    perror("Connect process error!");
    exit (EXIT_FAILURE);
}

write( sock, "testuser\n", 9 );
write( sock, "testenapwd\n", 11 );
write( sock, "terminal length 0\n", 18 );
usleep( 100000 );
read( sock, buf, sizeof( buf ) );
usleep( 100000 );
write( sock, "show cable modem\n", 17 );
usleep( 100000 );

while ( 1 ) {
    nbytes = 0;
    ioctl( sock, FIONREAD, &nbytes );

    if ( !nbytes ) { break; }
    else {
        memset( buf, 0, sizeof( buf ) );
        nbytes = read( sock, buf, sizeof( buf ) -1 );
        printf("%s", buf);
        printf(">>>%d<<<\n", nbytes);  // for debug
    }

    usleep( 300000 );   // delay
}

close( sock );
exit (EXIT_SUCCESS);

1 个答案:

答案 0 :(得分:1)

看看这个http://beej.us/guide/bgnet/output/html/singlepage/bgnet.html#sendrecv

建议在联网时使用recv和send功能。

recv返回接收的字节数,如果发生错误则返回-1。当对等体执行有序关闭时,返回值将为0。