Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. [Windows] First QUdpSocket::bind blocks for three seconds
Forum Updated to NodeBB v4.3 + New Features

[Windows] First QUdpSocket::bind blocks for three seconds

Scheduled Pinned Locked Moved Unsolved General and Desktop
qudpsockbindblocking
23 Posts 9 Posters 6.2k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D dheerendra
    3 Dec 2018, 16:56

    Any reason you are calling bind(..) each time for each interfaces ? You can also try simple with passing QHostAddress::AnyIPv4 with just one bind call. This will allows the packet to coming from any interface.

    A Offline
    A Offline
    aha_1980
    Lifetime Qt Champion
    wrote on 4 Dec 2018, 08:06 last edited by
    #14

    @dheerendra

    How about checking directly with calls like socket(...) & bind(..) call without using Qt ?

    Have not tried yet, and probably will not have time for that soon.

    Any reason you are calling bind(..) each time for each interfaces ?

    Because I send a datagram on each interface and listen for answers.

    You can also try simple with passing QHostAddress::AnyIPv4 with just one bind call.

    Doesn't help. The first bind() call blocks, no matter which address is given. Even the overload that takes no parameters blocks.

    Every next bind() is very fast. I think @Christian-Ehrlicher is right that it is some kind of network timeout. Not sure if DNS is involved here, but I will check more deeply when I installed Wireshark on that machine.

    Qt has to stay free or it will die.

    J 1 Reply Last reply 4 Dec 2018, 09:15
    0
    • D Offline
      D Offline
      dheerendra
      Qt Champions 2022
      wrote on 4 Dec 2018, 08:28 last edited by
      #15

      Not sure if DNS is involved here,

      DNS is not involved for bind. Only ARP can play role here. It is to get the MAC address corresponding to IP address. For the bind even this should not kick in. Even ARP will come into picture only if you start data transfer. Actually internally bind is not doing anything other than filling the Socket DataStructure with Source IP and Source Port#. If you are interested i can give you vanilla socket program to check on this.

      Dheerendra
      @Community Service
      Certified Qt Specialist
      http://www.pthinks.com

      A 1 Reply Last reply 4 Dec 2018, 09:50
      0
      • A aha_1980
        4 Dec 2018, 08:06

        @dheerendra

        How about checking directly with calls like socket(...) & bind(..) call without using Qt ?

        Have not tried yet, and probably will not have time for that soon.

        Any reason you are calling bind(..) each time for each interfaces ?

        Because I send a datagram on each interface and listen for answers.

        You can also try simple with passing QHostAddress::AnyIPv4 with just one bind call.

        Doesn't help. The first bind() call blocks, no matter which address is given. Even the overload that takes no parameters blocks.

        Every next bind() is very fast. I think @Christian-Ehrlicher is right that it is some kind of network timeout. Not sure if DNS is involved here, but I will check more deeply when I installed Wireshark on that machine.

        J Offline
        J Offline
        JonB
        wrote on 4 Dec 2018, 09:15 last edited by
        #16

        @aha_1980
        You state that the first bind() is what takes the extra time. However, your debug output prints start before it does anything and then does not print anything till after the first bind() has completed, and state that must be what is taking the time.

        I think you should determine whether that time is actually during the QNetworkInterface::allAddresses() call, while it gathers all addresses. Pull that into its own variable and time just that part. Is that actually where the 3 seconds is spent?

        A 1 Reply Last reply 4 Dec 2018, 09:46
        0
        • J JonB
          4 Dec 2018, 09:15

          @aha_1980
          You state that the first bind() is what takes the extra time. However, your debug output prints start before it does anything and then does not print anything till after the first bind() has completed, and state that must be what is taking the time.

          I think you should determine whether that time is actually during the QNetworkInterface::allAddresses() call, while it gathers all addresses. Pull that into its own variable and time just that part. Is that actually where the 3 seconds is spent?

          A Offline
          A Offline
          aha_1980
          Lifetime Qt Champion
          wrote on 4 Dec 2018, 09:46 last edited by
          #17

          @JonB

          Please read the topic title from the beginning :)

          I think you should determine whether that time is actually during the QNetworkInterface::allAddresses() call, while it gathers all addresses. Pull that into its own variable and time just that part. Is that actually where the 3 seconds is spent?

          I already expected that comment - but it's valid. No, it's really the bind() that takes the time. I already split that up to gather the addresses and bind each interface separate in a QTimers timeout, but it does not help.

          Fact is, the first bind() takes ages and blocks the GUI.

          Qt has to stay free or it will die.

          1 Reply Last reply
          0
          • D dheerendra
            4 Dec 2018, 08:28

            Not sure if DNS is involved here,

            DNS is not involved for bind. Only ARP can play role here. It is to get the MAC address corresponding to IP address. For the bind even this should not kick in. Even ARP will come into picture only if you start data transfer. Actually internally bind is not doing anything other than filling the Socket DataStructure with Source IP and Source Port#. If you are interested i can give you vanilla socket program to check on this.

            A Offline
            A Offline
            aha_1980
            Lifetime Qt Champion
            wrote on 4 Dec 2018, 09:50 last edited by
            #18

            @dheerendra Yes, I'd try a vanilla program if you got one.

            I just will not get around to do this today, as I'm starting to Qt Summit in a few hours. So testing will have to wait at least until friday.

            Qt has to stay free or it will die.

            1 Reply Last reply
            0
            • D Offline
              D Offline
              dheerendra
              Qt Champions 2022
              wrote on 4 Dec 2018, 10:02 last edited by dheerendra 12 Apr 2018, 10:02
              #19

              Please share an email on the chat message. I will drop you an email with the program.

              Dheerendra
              @Community Service
              Certified Qt Specialist
              http://www.pthinks.com

              1 Reply Last reply
              0
              • A Offline
                A Offline
                aha_1980
                Lifetime Qt Champion
                wrote on 7 Dec 2018, 14:20 last edited by
                #20

                Just as short interim report: A simple Windows winsock2 API program binds immediately. So it looks like I have to dig deeper, I just don't have the time for that right now. I'll come back to this problem later.

                Thanks for all your help so far.

                Qt has to stay free or it will die.

                J 1 Reply Last reply 7 Dec 2018, 21:57
                0
                • A aha_1980
                  7 Dec 2018, 14:20

                  Just as short interim report: A simple Windows winsock2 API program binds immediately. So it looks like I have to dig deeper, I just don't have the time for that right now. I'll come back to this problem later.

                  Thanks for all your help so far.

                  J Offline
                  J Offline
                  JonB
                  wrote on 7 Dec 2018, 21:57 last edited by JonB 12 Jul 2018, 21:57
                  #21

                  @aha_1980
                  Just as a short interim suggestion: As you are an expert Qt-er, if you're set up to run your program profiled would that immediately tell you where the extra time is being spent?

                  A 1 Reply Last reply 8 Dec 2018, 07:46
                  0
                  • J JonB
                    7 Dec 2018, 21:57

                    @aha_1980
                    Just as a short interim suggestion: As you are an expert Qt-er, if you're set up to run your program profiled would that immediately tell you where the extra time is being spent?

                    A Offline
                    A Offline
                    aha_1980
                    Lifetime Qt Champion
                    wrote on 8 Dec 2018, 07:46 last edited by
                    #22

                    @JonB probably. But nevertheless I'd need to dig into Qt sources. Also, this problem is one Windows (I'm not even sure if it is machine specific), and I dont have a debug/profile Qt setup there.

                    Otherwise I'd not asked ;)

                    Qt has to stay free or it will die.

                    L 1 Reply Last reply 21 May 2021, 08:09
                    0
                    • A aha_1980
                      8 Dec 2018, 07:46

                      @JonB probably. But nevertheless I'd need to dig into Qt sources. Also, this problem is one Windows (I'm not even sure if it is machine specific), and I dont have a debug/profile Qt setup there.

                      Otherwise I'd not asked ;)

                      L Offline
                      L Offline
                      Light Chaos
                      wrote on 21 May 2021, 08:09 last edited by
                      #23

                      @aha_1980 Try this: setProxy(QNetworkProxy::NoProxy)

                      1 Reply Last reply
                      0

                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved