0

QtbroadcastreceiverはLinuxの送信者と連携していません。送信者はcで書かれています。

私はQtbroadcastreceiverをWindowsでQtbroadcastsenderでテストしましたが、これは問題ありません。また、QtbroadcastsenderはCのLinuxレシーバーで正常に動作します。

WindowsでLinuxからデータを受信して​​いるときに何が問題になる可能性がありますか。

これが同じコードです。

送信者(Qt / windows):main.cpp

#include <QApplication>
#include "receiver.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    Receiver receiver;
    receiver.show();
    return app.exec();
}

Receiver.h

#ifndef RECEIVER_H
#define RECEIVER_H

#include <QtGui>
#include <QtNetwork/QUdpSocket>
#include <QWidget>

class Receiver : public QWidget
{
    Q_OBJECT

public:
    Receiver(QWidget *parent = 0);

private slots:
    void processPendingDatagrams();

private:
    QLabel *statusLabel;
    QPushButton *quitButton;
    QUdpSocket *udpSocket;
};

#endif

Receiver.cpp

#include <QtGui>
#include <QtNetwork>

#include "receiver.h"

#define PORT 45454

Receiver::Receiver(QWidget *parent): QWidget(parent)
{
    statusLabel = new QLabel(tr("Listening for broadcasted messages"));
    statusLabel->setWordWrap(true);

    quitButton = new QPushButton(tr("&Quit"));

    udpSocket = new QUdpSocket(this);
    bool b = udpSocket->bind(QHostAddress::Any,PORT, QUdpSocket::ShareAddress);

    connect(udpSocket, SIGNAL(readyRead()), this, SLOT(processPendingDatagrams()));
    connect(quitButton, SIGNAL(clicked()), this, SLOT(close()));

    QHBoxLayout *buttonLayout = new QHBoxLayout;
    buttonLayout->addStretch(1);
    buttonLayout->addWidget(quitButton);
    buttonLayout->addStretch(1);

    QVBoxLayout *mainLayout = new QVBoxLayout;
    mainLayout->addWidget(statusLabel);
    mainLayout->addLayout(buttonLayout);
    setLayout(mainLayout);

    setWindowTitle(tr("Broadcast Receiver"));
}

void Receiver::processPendingDatagrams()
{
    while (udpSocket->hasPendingDatagrams())
    {
        QByteArray datagram;
        datagram.resize(udpSocket->pendingDatagramSize());
        udpSocket->readDatagram(datagram.data(), datagram.size());
        statusLabel->setText(statusLabel->text() + tr("Received datagram: \"%1\"").arg(datagram.data()));
    }
}

broadcastreceiver.pro

HEADERS       = receiver.h
SOURCES       = receiver.cpp \
                main.cpp
QT           += network

# install
target.path = $$[QT_INSTALL_EXAMPLES]/network/broadcastreceiver
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS broadcastreceiver.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/network/broadcastreceiver
INSTALLS += target sources

symbian: {
    TARGET.CAPABILITY = NetworkServices
    include($$PWD/../../symbianpkgrules.pri)
}
maemo5: include($$PWD/../../maemo5pkgrules.pri)
contains(MEEGO_EDITION,harmattan): include($$PWD/../../harmattanpkgrules.pri)

sender.c(C / Linux)

#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <netinet/in.h>

#define BUFLEN 512
#define NPACK 10
#define PORT 45454

#define SRV_IP "xxx.xxx.xxx.xxx"

void diep(char *s)
{
    perror(s);
    exit(1);
}


int main(void)
{
    struct sockaddr_in si_other;
    int s, i, slen=sizeof(si_other);
    char buf[BUFLEN];

    if ((s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP))==-1)
    {
        diep("socket");
        printf("\n\tSocket error\n");
    }

    memset((char *) &si_other, 0, sizeof(si_other));
    si_other.sin_family = AF_INET;
    si_other.sin_port = htons(PORT);
    if (inet_aton(SRV_IP, &si_other.sin_addr)==0)
    {
         fprintf(stderr, "inet_aton() failed\n");
        printf("\n\tInet_aton error\n");
        exit(1);
    }

    for (i=0;; i++)
    {
        printf("Sending packet %d\n", i);
        sprintf(buf, "This is packet %d\n", i);
        if (sendto(s, buf, BUFLEN, 0, &si_other, slen)==-1)
     {
            diep("sendto()");
         printf("\n\tSendto error\n");
     }

    printf("Data written on (IP = %s and port : %d\n\n",inet_ntoa(si_other.sin_addr),ntohs(si_other.sin_port));
    sleep(1);
    }

    close(s);
    return 0;
}

よろしく、Gurmeet

4

1 に答える 1

1

私はあなたのコードを試してみましたが、ほとんどすべてが正常に機能しています。唯一の問題は、到着したパッケージがビューに正しく表示されないことです。最初のパッケージが到着すると、次のように表示されます。

Listening for broadcasted messagesReceived datagram: "This is packet

次に、パケットの内容が0バイトであり、QStringを終了するため、停止します。これは、後続のすべてのメッセージが表示されなくなることも意味します。

これで問題が解決するかどうかはわかりません。データがまったく届かない可能性があります。私はLinuxを使用していますが、Windowsについては何も保証できません(ただし、QtはLinuxと同様にWindowsでも機能するはずです)が、コードがLinuxで機能していることは保証できます。

于 2012-08-05T13:42:18.990 に答える