窗口 c++ :如何在基于 udp 的对话中使 receiveFrom 函数超时

发布于 2024-08-25 22:04:46 字数 183 浏览 4 评论 0原文

我正在尝试在 UDP 之上创建可靠的服务。 如果没有数据包到达,我需要超时 window C++ 的 receiveFrom 函数 在指定的时间内。 在java中我这样做DatagramSocket.setSoTimeout但我不知道如何在Windows C++中实现这一点。

谢谢

I am trying to create a reliable service on top of UDP.
Here i need to timeout receiveFrom function of window c++ if not packet arrives
in specified time.
In java i do this DatagramSocket.setSoTimeout but i dont know how to achieve this in windows c++.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

慵挽 2024-09-01 22:04:46

看看 setsockopt() 特别是SO_RCVTIMEO

Take a look at setsockopt() specifically SO_RCVTIMEO.

离笑几人歌 2024-09-01 22:04:46

尝试使用选择。这适用于 TCP 和 UDP 套接字。这是与 Len 的答案中执行相同操作的另一种方法,但您可以在逐个调用的基础上设置超时长度,而不是为套接字上的所有接收操作设置超时。

 #include <errno.h>
 #include <stdio.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/time.h>

 int
 input_timeout (int filedes, unsigned int seconds)
 {
   fd_set set;
   struct timeval timeout;

   /* Initialize the file descriptor set. */
   FD_ZERO (&set);
   FD_SET (filedes, &set);

   /* Initialize the timeout data structure. */
   timeout.tv_sec = seconds;
   timeout.tv_usec = 0;

   /* select returns 0 if timeout, 1 if input available, -1 if error. */
   return TEMP_FAILURE_RETRY (select (FD_SETSIZE,
                                      &set, NULL, NULL,
                                      &timeout));
 }

 int
 main (void)
 {
   fprintf (stderr, "select returned %d.\n",
            input_timeout (STDIN_FILENO, 5));
   return 0;
 }

Try using select. This will work on both TCP and UDP sockets. Just another way to do the same thing as in Len's answer, but instead of setting a timeout for all recv operations on the socket you can set the length of the timeout on a call by call basis.

 #include <errno.h>
 #include <stdio.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/time.h>

 int
 input_timeout (int filedes, unsigned int seconds)
 {
   fd_set set;
   struct timeval timeout;

   /* Initialize the file descriptor set. */
   FD_ZERO (&set);
   FD_SET (filedes, &set);

   /* Initialize the timeout data structure. */
   timeout.tv_sec = seconds;
   timeout.tv_usec = 0;

   /* select returns 0 if timeout, 1 if input available, -1 if error. */
   return TEMP_FAILURE_RETRY (select (FD_SETSIZE,
                                      &set, NULL, NULL,
                                      &timeout));
 }

 int
 main (void)
 {
   fprintf (stderr, "select returned %d.\n",
            input_timeout (STDIN_FILENO, 5));
   return 0;
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文