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. QUdpSocket does not trigger ReadyRead signal
QtWS25 Last Chance

QUdpSocket does not trigger ReadyRead signal

Scheduled Pinned Locked Moved Unsolved General and Desktop
26 Posts 6 Posters 5.3k Views
  • 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.
  • SGaistS Offline
    SGaistS Offline
    SGaist
    Lifetime Qt Champion
    wrote on last edited by
    #2

    Hi,

    Are you trying to send and receive the image using the exact same socket ?

    Interested in AI ? www.idiap.ch
    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

    O 1 Reply Last reply
    0
    • SGaistS SGaist

      Hi,

      Are you trying to send and receive the image using the exact same socket ?

      O Offline
      O Offline
      onurcevik
      wrote on last edited by
      #3

      @SGaist In main.cpp I create the UDPSocket object outside the for loop then use the same object to access the sendFrame(QImage frame); function to send the sockets inside the loop . So I guess I use the same socket.

      1 Reply Last reply
      0
      • SGaistS Offline
        SGaistS Offline
        SGaist
        Lifetime Qt Champion
        wrote on last edited by
        #4

        Then show what you are doing.

        From what you wrote, you don't even have an event loop running hence not signals/slots working.

        Also, why are you trying to use UPD to send data from your application back to the same application ?

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        O 1 Reply Last reply
        2
        • SGaistS SGaist

          Then show what you are doing.

          From what you wrote, you don't even have an event loop running hence not signals/slots working.

          Also, why are you trying to use UPD to send data from your application back to the same application ?

          O Offline
          O Offline
          onurcevik
          wrote on last edited by
          #5

          @SGaist I already posted almost all of my code? What do you mean "show what you are doing?"
          I am sending/recieving on same PC to test if I can so later I can implement it for different PC's. Since Im newbie I dont know much about event loops can you show some example?

          jsulmJ 1 Reply Last reply
          0
          • O onurcevik

            @SGaist I already posted almost all of my code? What do you mean "show what you are doing?"
            I am sending/recieving on same PC to test if I can so later I can implement it for different PC's. Since Im newbie I dont know much about event loops can you show some example?

            jsulmJ Offline
            jsulmJ Offline
            jsulm
            Lifetime Qt Champion
            wrote on last edited by
            #6

            @onurcevik Can you show your main.cpp?

            https://forum.qt.io/topic/113070/qt-code-of-conduct

            O 1 Reply Last reply
            0
            • jsulmJ jsulm

              @onurcevik Can you show your main.cpp?

              O Offline
              O Offline
              onurcevik
              wrote on last edited by
              #7

              @jsulm I edited and added main.cpp to my question.

              jsulmJ 1 Reply Last reply
              0
              • O onurcevik

                @jsulm I edited and added main.cpp to my question.

                jsulmJ Offline
                jsulmJ Offline
                jsulm
                Lifetime Qt Champion
                wrote on last edited by jsulm
                #8

                @onurcevik A loop with sleep() inside (before starting event loop) and you expect this to work? It will not. See what @SGaist wrote.

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                O 1 Reply Last reply
                2
                • jsulmJ jsulm

                  @onurcevik A loop with sleep() inside (before starting event loop) and you expect this to work? It will not. See what @SGaist wrote.

                  O Offline
                  O Offline
                  onurcevik
                  wrote on last edited by
                  #9

                  @jsulm @SGaist Sorry for my noob mistakes. I searched event loop in QT but I couldn't find how to implement it. Can you help me with that ? Should I use Threads ?

                  jsulmJ 1 Reply Last reply
                  0
                  • O onurcevik

                    @jsulm @SGaist Sorry for my noob mistakes. I searched event loop in QT but I couldn't find how to implement it. Can you help me with that ? Should I use Threads ?

                    jsulmJ Offline
                    jsulmJ Offline
                    jsulm
                    Lifetime Qt Champion
                    wrote on last edited by jsulm
                    #10

                    @onurcevik

                    return a.exec();
                    

                    this starts the event loop. No need for threads. Use asynchronous nature of QUdpSocket instead. You should take a look at one of the example applications for networking.

                    https://forum.qt.io/topic/113070/qt-code-of-conduct

                    O 1 Reply Last reply
                    0
                    • jsulmJ jsulm

                      @onurcevik

                      return a.exec();
                      

                      this starts the event loop. No need for threads. Use asynchronous nature of QUdpSocket instead. You should take a look at one of the example applications for networking.

                      O Offline
                      O Offline
                      onurcevik
                      wrote on last edited by onurcevik
                      #11

                      @jsulm I deleted sleep and for loop it still did not work. I did take a look couple of examples even tried to run it. A pinpoint to what wrongs with my code would be really helpful. Since removing sleep and for did not work either.

                      Edit: I will switch to QWidget application and try to send through a button click.

                      aha_1980A 1 Reply Last reply
                      0
                      • O onurcevik

                        @jsulm I deleted sleep and for loop it still did not work. I did take a look couple of examples even tried to run it. A pinpoint to what wrongs with my code would be really helpful. Since removing sleep and for did not work either.

                        Edit: I will switch to QWidget application and try to send through a button click.

                        aha_1980A Offline
                        aha_1980A Offline
                        aha_1980
                        Lifetime Qt Champion
                        wrote on last edited by
                        #12

                        Hi @onurcevik,

                        • On which platform are you?
                        • Which Qt version do you use?
                        • Do you have multiple network adapters in your computer?

                        Regards

                        Qt has to stay free or it will die.

                        O 1 Reply Last reply
                        0
                        • aha_1980A aha_1980

                          Hi @onurcevik,

                          • On which platform are you?
                          • Which Qt version do you use?
                          • Do you have multiple network adapters in your computer?

                          Regards

                          O Offline
                          O Offline
                          onurcevik
                          wrote on last edited by
                          #13

                          @aha_1980

                          • I am on Kubuntu
                          • I use Qt Creator 4.6.2 Based on Qt 5.11.1 (GCC 8.1.0, 64 bit)
                          • I only have 1 modem.
                          aha_1980A 1 Reply Last reply
                          0
                          • O onurcevik

                            @aha_1980

                            • I am on Kubuntu
                            • I use Qt Creator 4.6.2 Based on Qt 5.11.1 (GCC 8.1.0, 64 bit)
                            • I only have 1 modem.
                            aha_1980A Offline
                            aha_1980A Offline
                            aha_1980
                            Lifetime Qt Champion
                            wrote on last edited by aha_1980
                            #14

                            @onurcevik

                            Can you please post the output of ifconfig -a?

                            It is likely that your packet is not even send out. You can check that with Wireshark.

                            Edit:

                            I use Qt Creator 4.6.2 Based on Qt 5.11.1 (GCC 8.1.0, 64 bit)

                            That is the Creator version, not the Qt version I asked for.

                            Qt has to stay free or it will die.

                            O 1 Reply Last reply
                            0
                            • aha_1980A aha_1980

                              @onurcevik

                              Can you please post the output of ifconfig -a?

                              It is likely that your packet is not even send out. You can check that with Wireshark.

                              Edit:

                              I use Qt Creator 4.6.2 Based on Qt 5.11.1 (GCC 8.1.0, 64 bit)

                              That is the Creator version, not the Qt version I asked for.

                              O Offline
                              O Offline
                              onurcevik
                              wrote on last edited by
                              #15

                              @aha_1980

                              That is the Creator version, not the Qt version I asked for.

                              I use Qt Creator 4.6.2 Based on Qt 5.11.1 (GCC 8.1.0, 64 bit)

                              QT version is next to the QT Creator Version which is 5.11.1

                              the output of ifconfig -a :

                              enp27s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                                      inet 192.168.2.44  netmask 255.255.255.0  broadcast 192.168.2.255
                                      inet6 fe80::a98d:26da:2afd:3299  prefixlen 64  scopeid 0x20<link>
                                      ether 00:d8:61:15:7d:b8  txqueuelen 1000  (Ethernet)
                                      RX packets 37659  bytes 41459688 (41.4 MB)
                                      RX errors 0  dropped 0  overruns 0  frame 0
                                      TX packets 27301  bytes 2684010 (2.6 MB)
                                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
                              
                              lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
                                      inet 127.0.0.1  netmask 255.0.0.0
                                      inet6 ::1  prefixlen 128  scopeid 0x10<host>
                                      loop  txqueuelen 1000  (Local Loopback)
                                      RX packets 1963  bytes 180145 (180.1 KB)
                                      RX errors 0  dropped 0  overruns 0  frame 0
                                      TX packets 1963  bytes 180145 (180.1 KB)
                                      TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
                              
                              

                              @aha_1980 said in QUdpSocket does not trigger ReadyRead signal:

                              aha_1980A 1 Reply Last reply
                              0
                              • O onurcevik

                                @aha_1980

                                That is the Creator version, not the Qt version I asked for.

                                I use Qt Creator 4.6.2 Based on Qt 5.11.1 (GCC 8.1.0, 64 bit)

                                QT version is next to the QT Creator Version which is 5.11.1

                                the output of ifconfig -a :

                                enp27s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                                        inet 192.168.2.44  netmask 255.255.255.0  broadcast 192.168.2.255
                                        inet6 fe80::a98d:26da:2afd:3299  prefixlen 64  scopeid 0x20<link>
                                        ether 00:d8:61:15:7d:b8  txqueuelen 1000  (Ethernet)
                                        RX packets 37659  bytes 41459688 (41.4 MB)
                                        RX errors 0  dropped 0  overruns 0  frame 0
                                        TX packets 27301  bytes 2684010 (2.6 MB)
                                        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
                                
                                lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
                                        inet 127.0.0.1  netmask 255.0.0.0
                                        inet6 ::1  prefixlen 128  scopeid 0x10<host>
                                        loop  txqueuelen 1000  (Local Loopback)
                                        RX packets 1963  bytes 180145 (180.1 KB)
                                        RX errors 0  dropped 0  overruns 0  frame 0
                                        TX packets 1963  bytes 180145 (180.1 KB)
                                        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
                                
                                

                                @aha_1980 said in QUdpSocket does not trigger ReadyRead signal:

                                aha_1980A Offline
                                aha_1980A Offline
                                aha_1980
                                Lifetime Qt Champion
                                wrote on last edited by
                                #16

                                @onurcevik said in QUdpSocket does not trigger ReadyRead signal:

                                QT version is next to the QT Creator Version which is 5.11.1

                                That is the Qt version Creator is built with, which is not necessarily the version you are using to compile your program.

                                From you ifconfig I see, that there is only one physical interface., so bind should select the correct one.

                                Please check with wireshark that the packet is sent out.

                                Qt has to stay free or it will die.

                                O 1 Reply Last reply
                                1
                                • SGaistS Offline
                                  SGaistS Offline
                                  SGaist
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #17

                                  Just for the sake of simplification, did you take a look at the examples linked in the QUdpSocket documentation ?

                                  Thinking about:

                                  Broadcast Sender
                                  Broadcast Receiver
                                  Multicast Sender
                                  Multicast Receiver

                                  Interested in AI ? www.idiap.ch
                                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  1 Reply Last reply
                                  4
                                  • aha_1980A aha_1980

                                    @onurcevik said in QUdpSocket does not trigger ReadyRead signal:

                                    QT version is next to the QT Creator Version which is 5.11.1

                                    That is the Qt version Creator is built with, which is not necessarily the version you are using to compile your program.

                                    From you ifconfig I see, that there is only one physical interface., so bind should select the correct one.

                                    Please check with wireshark that the packet is sent out.

                                    O Offline
                                    O Offline
                                    onurcevik
                                    wrote on last edited by onurcevik
                                    #18

                                    @aha_1980 I now realized that I can't even send the socket due to large size which is 1 mb. Do you know how can I divide it into chunks of bytes ? Or should I create new topic?

                                    1 Reply Last reply
                                    0
                                    • SGaistS Offline
                                      SGaistS Offline
                                      SGaist
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #19

                                      What exactly is the goal of your application ?

                                      Interested in AI ? www.idiap.ch
                                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      O 1 Reply Last reply
                                      1
                                      • SGaistS SGaist

                                        What exactly is the goal of your application ?

                                        O Offline
                                        O Offline
                                        onurcevik
                                        wrote on last edited by
                                        #20

                                        @SGaist I want to take pictures from camera then send and recieve them continuously in order to implement a real time video streaming application. The reason I am sending images instead of video is because I will later work on image processing. I realized that image size is too big for this which is 6404803 BYTES. But I also can't switch to TCP because I need the speed of UDP.

                                        1 Reply Last reply
                                        0
                                        • CP71C Offline
                                          CP71C Offline
                                          CP71
                                          wrote on last edited by CP71
                                          #21

                                          Ok,
                                          I apologize to mother tongue people for my English, I know, it isn’t good
                                          Anyway, If I have understood correctly there is a limit of 1Mb, but limit apart, to do this I always do:

                                          The server application

                                          • Send a header with a fixed size and with the following information: a security key (to recognise a my flow), data size, …. and then send data
                                          • You can get and save a pointer of data from QbyteArray by “data” function
                                          • With a loop I send few pieces of data ( < 1Mb) by writeDatagram, it is easy, all you need to do you have to use an index to move on the data pointer

                                          The client application:

                                          • When it will receive your header and recognise it, it will know data size too
                                          • read all data that will receive and reassemble the all image

                                          For me UDP is a good choice.

                                          I hope to help you.

                                          JonBJ 1 Reply Last reply
                                          3

                                          • Login

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