mirror of
https://github.com/riba2534/TCP-IP-NetworkNote.git
synced 2026-02-02 17:48:55 +08:00
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
#include <stdio.h>
|
||
#include <unistd.h>
|
||
#include <sys/time.h>
|
||
#include <sys/select.h>
|
||
#define BUF_SIZE 30
|
||
|
||
int main(int argc, char *argv[])
|
||
{
|
||
fd_set reads, temps;
|
||
int result, str_len;
|
||
char buf[BUF_SIZE];
|
||
struct timeval timeout;
|
||
|
||
FD_ZERO(&reads); //初始化变量
|
||
FD_SET(0, &reads); //将文件描述符0对应的位设置为1
|
||
|
||
/*
|
||
timeout.tv_sec=5;
|
||
timeout.tv_usec=5000;
|
||
*/
|
||
|
||
while (1)
|
||
{
|
||
temps = reads; //为了防止调用了select 函数后,位的内容改变,先提前存一下
|
||
timeout.tv_sec = 5;
|
||
timeout.tv_usec = 0;
|
||
result = select(1, &temps, 0, 0, &timeout); //如果控制台输入数据,则返回大于0的数,没有就会超时
|
||
if (result == -1)
|
||
{
|
||
puts("select error!");
|
||
break;
|
||
}
|
||
else if (result == 0)
|
||
{
|
||
puts("Time-out!");
|
||
}
|
||
else
|
||
{
|
||
if (FD_ISSET(0, &temps)) //验证发生变化的值是否是标准输入端
|
||
{
|
||
str_len = read(0, buf, BUF_SIZE);
|
||
buf[str_len] = 0;
|
||
printf("message from console: %s", buf);
|
||
}
|
||
}
|
||
}
|
||
return 0;
|
||
}
|